aboutsummaryrefslogtreecommitdiff
path: root/scripts/patcher
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/patcher')
-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);
}