Browse Source

hardcode module path in error message

Zeke Sikelianos 8 years ago
parent
commit
24ef8cc8ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      npm/index.js

+ 1 - 1
npm/index.js

@@ -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')
 }