Attempt to fix CI
This commit is contained in:
parent
2d7815cff8
commit
a43fa8ef66
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ function readDir(nam:string) {
|
|||
|
||||
// This is a very dumb way of checking for folders
|
||||
// protip: don't do this.
|
||||
if (statSync(`${nam}/${file}`).isDirectory()) {
|
||||
if (lstatSync(`${nam}/${file}`).isDirectory()) {
|
||||
readDir(`${nam}/${file}`);
|
||||
} else if (file.endsWith(".ts")) {
|
||||
tsFileData.push(readFileSync((`${nam}/${file}`).replace("//", "/")).toString());
|
||||
|
|
Loading…
Reference in a new issue