From d59b5c0c0c6a0010773cc09cafb556ddab472f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20R=C3=B6=C3=9Fner?= Date: Fri, 17 Feb 2017 18:57:10 +0100 Subject: [PATCH] #33: removed AutoLaunch path option As the AutoLaunch docs mention, the path option is optional for electron apps and it works great (at least on Linux). --- src/app.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app.js b/src/app.js index 8ca3408..fc3d50c 100644 --- a/src/app.js +++ b/src/app.js @@ -117,13 +117,8 @@ mb.on('show', function show () { mb.window.webContents.send('show') }) -const appPath = app.getPath('exe').split('.app/Content')[0] + '.app' - -console.log(appPath) - const appLauncher = new AutoLaunch({ name: 'temps', - path: appPath, isHidden: true })