hardcode module path in error message

This commit is contained in:
Zeke Sikelianos 2017-02-08 11:36:38 -08:00
parent 73e753ef9a
commit 24ef8cc8ce

View file

@ -6,5 +6,5 @@ var pathFile = path.join(__dirname, 'path.txt')
if (fs.existsSync(pathFile)) {
module.exports = path.join(__dirname, fs.readFileSync(pathFile, 'utf-8'))
} else {
throw new Error('Electron failed to install correctly, please delete node_modules/' + path.basename(__dirname) + ' and try installing again')
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again')
}