insomnia/packages/insomnia-app/app/main/squirrel-startup.js
2019-05-15 18:34:12 -04:00

34 lines
875 B
JavaScript

import path from 'path';
import { spawn } from 'child_process';
import { app } from 'electron';
function run(args, done) {
const updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe');
spawn(updateExe, args, { detached: true }).on('close', done);
}
export function checkIfRestartNeeded() {
if (process.platform !== 'win32') {
return false;
}
const cmd = process.argv[1];
console.log('processing squirrel command `%s`', cmd);
const target = path.basename(process.execPath);
switch (cmd) {
case '--squirrel-install':
run(['--createShortcut=' + target + ''], app.quit);
return true;
case '--squirrel-uninstall':
run(['--removeShortcut=' + target + ''], app.quit);
return true;
case '--squirrel-updated':
case '--squirrel-obsolete':
app.quit();
return true;
}
return false;
}