empirically fix win32 shortcut in start menu

pull/2543/merge
Matthew Hodgson 2016-12-24 18:13:33 +00:00
parent 8c523be6f5
commit 4de042bf58
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ const spawn = require('child_process').spawn;
const app = require('electron').app;
function run_update_exe(args, done) {
const updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe');
const updateExe = path.resolve(path.dirname(process.execPath), 'Update.exe');
spawn(updateExe, args, {
detached: true
}).on('close', done);