You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
659 B
22 lines
659 B
11 months ago
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
|
||
|
const pathFile = path.join(__dirname, 'path.txt');
|
||
|
|
||
|
function getElectronPath () {
|
||
|
let executablePath;
|
||
|
if (fs.existsSync(pathFile)) {
|
||
|
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) {
|
||
|
return path.join(__dirname, 'dist', executablePath);
|
||
|
} else {
|
||
|
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = getElectronPath();
|