aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-09 22:31:51 +0200
committerVendicated <vendicated@riseup.net>2022-10-09 22:31:51 +0200
commit304bf4fe29fd76fd951d69dd364087c735bbbb16 (patch)
treedefad07e78e5ead2fab4688244ac7b693ebbb44c /scripts
parent25a64ab6be0ad02008f57a518b9c6a874f5ea05d (diff)
downloadVencord-304bf4fe29fd76fd951d69dd364087c735bbbb16.tar.gz
Vencord-304bf4fe29fd76fd951d69dd364087c735bbbb16.tar.bz2
Vencord-304bf4fe29fd76fd951d69dd364087c735bbbb16.zip
Unignore lock file
Diffstat (limited to 'scripts')
-rw-r--r--scripts/patcher/install.js2
-rw-r--r--scripts/patcher/uninstall.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/patcher/install.js b/scripts/patcher/install.js
index 4e75dbe..56b9dd3 100644
--- a/scripts/patcher/install.js
+++ b/scripts/patcher/install.js
@@ -5,7 +5,7 @@ const { execSync } = require("child_process");
console.log("\nVencord Installer\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) {
- console.log("You need to install dependencies first. Run:", "pnpm install");
+ console.log("You need to install dependencies first. Run:", "pnpm install --frozen-lockfile");
process.exit(1);
}
diff --git a/scripts/patcher/uninstall.js b/scripts/patcher/uninstall.js
index 015e878..cf727f7 100644
--- a/scripts/patcher/uninstall.js
+++ b/scripts/patcher/uninstall.js
@@ -4,7 +4,7 @@ const fs = require("fs");
console.log("\nVencord Uninstaller\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) {
- console.log("You need to install dependencies first. Run:", "pnpm install");
+ console.log("You need to install dependencies first. Run:", "pnpm install --frozen-lockfile");
process.exit(1);
}