From 6f9a5c65ccaa74b6403a75d44f737b69ce527011 Mon Sep 17 00:00:00 2001 From: Kamesuta Date: Mon, 23 Oct 2023 03:22:22 +0900 Subject: [PATCH] Fix ForgeInstallerCLI path for mac. --- app/assets/js/scripts/landing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/js/scripts/landing.js b/app/assets/js/scripts/landing.js index bf3690ad..55bd417a 100644 --- a/app/assets/js/scripts/landing.js +++ b/app/assets/js/scripts/landing.js @@ -560,7 +560,7 @@ async function dlAsync(login = true) { } else { const exePath = remote.app.getPath('exe') if(process.platform === 'darwin'){ - wrapperPath = join(exePath, '..', '..', 'Contents', 'Resources', 'libraries', 'java', 'ForgeInstallerCLI.jar') + wrapperPath = join(exePath, '..', '..', 'Resources', 'libraries', 'java', 'ForgeInstallerCLI.jar') } else { wrapperPath = join(exePath, '..', 'resources', 'libraries', 'java', 'ForgeInstallerCLI.jar') }