Another CI fix attempt
This commit is contained in:
parent
530b468dfb
commit
2d7815cff8
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
// for when you're just too lazy to
|
||||
// do it properly.
|
||||
|
||||
import { readdirSync, statSync, readFileSync, writeFileSync } from "fs";
|
||||
import { readdirSync, lstatSync, readFileSync, writeFileSync } from "fs";
|
||||
|
||||
const tsFileData:Array<string> = new Array<string>();
|
||||
|
||||
|
@ -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}`).size == 0) {
|
||||
if (statSync(`${nam}/${file}`).isDirectory()) {
|
||||
readDir(`${nam}/${file}`);
|
||||
} else if (file.endsWith(".ts")) {
|
||||
tsFileData.push(readFileSync((`${nam}/${file}`).replace("//", "/")).toString());
|
||||
|
|
Loading…
Reference in a new issue