2020-10-21 16:43:52 -06:00
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
2014-11-15 02:21:07 -07:00
|
|
|
|
2020-10-21 16:43:52 -06:00
|
|
|
const pathFile = path.join(__dirname, 'path.txt');
|
2016-12-26 16:17:48 -07:00
|
|
|
|
2018-03-24 22:03:17 -06:00
|
|
|
function getElectronPath () {
|
2020-12-03 00:23:44 -07:00
|
|
|
let executablePath;
|
2018-03-24 22:03:17 -06:00
|
|
|
if (fs.existsSync(pathFile)) {
|
2020-12-03 00:23:44 -07:00
|
|
|
executablePath = fs.readFileSync(pathFile, 'utf-8');
|
|
|
|
}
|
|
|
|
if (process.env.ELECTRON_OVERRIDE_DIST_PATH) {
|
|
|
|
return path.join(process.env.ELECTRON_OVERRIDE_DIST_PATH, executablePath || 'electron');
|
|
|
|
}
|
|
|
|
if (executablePath) {
|
2020-10-21 16:43:52 -06:00
|
|
|
return path.join(__dirname, 'dist', executablePath);
|
2018-03-24 22:03:17 -06:00
|
|
|
} else {
|
2020-10-21 16:43:52 -06:00
|
|
|
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again');
|
2018-03-24 22:03:17 -06:00
|
|
|
}
|
2016-12-26 16:17:48 -07:00
|
|
|
}
|
2018-03-24 22:03:17 -06:00
|
|
|
|
2020-10-21 16:43:52 -06:00
|
|
|
module.exports = getElectronPath();
|