From bc11e2be4983cb68cfde13bc13cc10a092a82136 Mon Sep 17 00:00:00 2001 From: hensm Date: Wed, 26 Sep 2018 21:33:33 +0100 Subject: [PATCH] Fix launcher dist/ path --- app/scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/build.js b/app/scripts/build.js index d0a8263..52eb115 100644 --- a/app/scripts/build.js +++ b/app/scripts/build.js @@ -27,7 +27,7 @@ async function build() { ? 'bat' : 'sh'; const launcherName = `launcher.${launcherExt}`; - const launcherPath = path.join(__dirname, '../../dist', launcherName); + const launcherPath = path.join(__dirname, '../../dist/app', launcherName); fs.copyFileSync(path.join(`src`, launcherName), launcherPath);