mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 13:46:21 +00:00
11 lines
338 B
JavaScript
11 lines
338 B
JavaScript
|
|
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')
|
||
|
|
}
|