diff options
Diffstat (limited to 'scripts/patcher/install.js')
-rw-r--r-- | scripts/patcher/install.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/patcher/install.js b/scripts/patcher/install.js index f423ce9..c9babc8 100644 --- a/scripts/patcher/install.js +++ b/scripts/patcher/install.js @@ -96,7 +96,7 @@ async function install(installations) { const requiredFiles = ["index.js", "package.json"]; - if (requiredFiles.every((f) => fs.existsSync(path.join(dir, f)))) { + if (requiredFiles.every(f => fs.existsSync(path.join(dir, f)))) { console.log( "Successfully patched", version.name |