From 304bf4fe29fd76fd951d69dd364087c735bbbb16 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 9 Oct 2022 22:31:51 +0200 Subject: Unignore lock file --- scripts/patcher/install.js | 2 +- scripts/patcher/uninstall.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/patcher') 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); } -- cgit