*Update dist

This commit is contained in:
Derrick Hammer 2022-09-21 17:17:09 -04:00
parent e49ce56cb8
commit 4dca570ba8
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 2 deletions

3
dist/index.js vendored
View File

@ -107,10 +107,9 @@ class Config {
files.forEach(this.openJson);
}
openJson(file) {
const path = this.getFile(file);
let json;
try {
json = fs_1.default.readFileSync(path, "utf8");
json = fs_1.default.readFileSync(file, "utf8");
json = JSON.parse(json);
}
catch (e) {