Get package name from folder path
This commit is contained in:
parent
5c8ebb296c
commit
b85ec95975
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
var fs = require('fs')
|
var fs = require('fs')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
const pathFile = path.join(__dirname, 'path.txt')
|
var pathFile = path.join(__dirname, 'path.txt')
|
||||||
|
|
||||||
if (fs.existsSync(pathFile)) {
|
if (fs.existsSync(pathFile)) {
|
||||||
module.exports = path.join(__dirname, fs.readFileSync(pathFile, 'utf-8'))
|
module.exports = path.join(__dirname, fs.readFileSync(pathFile, 'utf-8'))
|
||||||
} else {
|
} else {
|
||||||
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again');
|
throw new Error('Electron failed to install correctly, please delete node_modules/' + path.basename(__dirname) + ' and try installing again');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue