blob: eb480b9e01dd1cae541ebb8295ce7a766beb38a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
var fs = require('fs')
var path = require('path')
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/electron and try installing again')
}
|