Fix launcher dist/ path

This commit is contained in:
hensm
2018-09-26 21:33:33 +01:00
parent b347a75157
commit bc11e2be49

View File

@@ -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);