var -> const

This commit is contained in:
Antonio Scandurra
2016-07-27 14:59:24 +02:00
parent e4946a1892
commit 4fc049461c

View File

@@ -4,7 +4,7 @@ const {ipcMain} = require('electron')
module.exports = class AtomPortable {
static getPortableAtomHomePath () {
var execDirectoryPath = path.dirname(process.execPath)
const execDirectoryPath = path.dirname(process.execPath)
return path.join(execDirectoryPath, '..', '.atom')
}