mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Merge pull request #230 from electron-userland/no-dynamic-path-in-error
hardcode module path in installation error message
This commit is contained in:
@@ -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')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user