From e15ce6130d9387a1e90d195f2217811628ee9905 Mon Sep 17 00:00:00 2001 From: Prince527 Date: Thu, 18 Jul 2024 15:23:09 -0300 Subject: [PATCH] Fix Linux Injecting (#14) --- scripts/runInstaller.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runInstaller.mjs b/scripts/runInstaller.mjs index ab4ac78b..5b91c13c 100644 --- a/scripts/runInstaller.mjs +++ b/scripts/runInstaller.mjs @@ -39,7 +39,7 @@ function getFilename() { case "darwin": return "EquicordInstaller.MacOS.zip"; case "linux": - return "EquicordInstaller-linux"; + return "EquicordInstallerCli-linux"; default: throw new Error("Unsupported platform: " + process.platform); }