From 24ef8cc8ced46aa459e1daf5961a236071e51ade Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Wed, 8 Feb 2017 11:36:38 -0800 Subject: [PATCH] hardcode module path in error message --- npm/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/index.js b/npm/index.js index ac3de3846d9f..eb480b9e01dd 100644 --- a/npm/index.js +++ b/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') }