remove unnecessary escape

This commit is contained in:
Feross Aboukhadijeh
2016-05-02 20:42:05 +02:00
parent 56ba5c705a
commit 735851486e

View File

@@ -261,7 +261,7 @@ function installLinux () {
if (err) return log.error(err.message)
var appPath = config.IS_PRODUCTION ? path.dirname(process.execPath) : config.ROOT_PATH
var execPath = process.execPath + (config.IS_PRODUCTION ? '' : ' \.')
var execPath = process.execPath + (config.IS_PRODUCTION ? '' : ' .')
var tryExecPath = process.execPath
desktopFile = desktopFile.replace(/\$APP_NAME/g, config.APP_NAME)