mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
empirically fix win32 shortcut in start menu
This commit is contained in:
parent
8c523be6f5
commit
4de042bf58
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue