update auto-launch
This commit is contained in:
@@ -3,19 +3,11 @@ module.exports = {
|
||||
uninstall
|
||||
}
|
||||
|
||||
const config = require('../config')
|
||||
const { APP_NAME } = require('../config')
|
||||
const AutoLaunch = require('auto-launch')
|
||||
const { app } = require('electron')
|
||||
|
||||
// On Mac, work around a bug in auto-launch where it opens a Terminal window
|
||||
// See https://github.com/Teamwork/node-auto-launch/issues/28#issuecomment-222194437
|
||||
const appPath = process.platform === 'darwin'
|
||||
? app.getPath('exe').replace(/\.app\/Content.*/, '.app')
|
||||
: undefined // Use the default
|
||||
|
||||
const appLauncher = new AutoLaunch({
|
||||
name: config.APP_NAME,
|
||||
path: appPath,
|
||||
name: APP_NAME,
|
||||
isHidden: true
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user