mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
19 lines
607 B
JavaScript
19 lines
607 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const pathFile = path.join(__dirname, 'path.txt');
|
|
|
|
function getElectronPath () {
|
|
if (fs.existsSync(pathFile)) {
|
|
const executablePath = fs.readFileSync(pathFile, 'utf-8');
|
|
if (process.env.ELECTRON_OVERRIDE_DIST_PATH) {
|
|
return path.join(process.env.ELECTRON_OVERRIDE_DIST_PATH, 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();
|