|
@@ -4,11 +4,14 @@ const path = require('path');
|
|
|
const pathFile = path.join(__dirname, 'path.txt');
|
|
|
|
|
|
function getElectronPath () {
|
|
|
+ let executablePath;
|
|
|
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);
|
|
|
- }
|
|
|
+ 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');
|