Remove semicolon

This commit is contained in:
Kevin Sawicki 2016-12-28 09:29:37 -08:00
parent e3e05aa797
commit d9d47344c1

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/' + path.basename(__dirname) + ' and try installing again')
}