Fix wrong require for main process

This commit is contained in:
Yuya Ochiai
2017-09-15 21:22:44 +09:00
committed by GitHub
parent 82c29dd848
commit eb4b9a5529

View File

@@ -1,5 +1,5 @@
const AutoLaunch = require('auto-launch'); const AutoLaunch = require('auto-launch');
const {remote} = require('electron'); const {app} = require('electron');
function shouldQuitApp(cmd) { function shouldQuitApp(cmd) {
if (process.platform !== 'win32') { if (process.platform !== 'win32') {
@@ -10,7 +10,7 @@ function shouldQuitApp(cmd) {
async function setupAutoLaunch(cmd) { async function setupAutoLaunch(cmd) {
const appLauncher = new AutoLaunch({ const appLauncher = new AutoLaunch({
name: remote.app.getName(), name: app.getName(),
isHidden: true isHidden: true
}); });
if (cmd === '--squirrel-uninstall') { if (cmd === '--squirrel-uninstall') {