electron/npm/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 строки
659 B
JavaScript
Исходник Постоянная ссылка Обычный вид История

2020-10-22 01:43:52 +03:00
const fs = require('fs');
const path = require('path');
2014-11-15 12:21:07 +03:00
2020-10-22 01:43:52 +03:00
const pathFile = path.join(__dirname, 'path.txt');
2016-12-27 02:17:48 +03:00
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) {
2020-10-22 01:43:52 +03:00
return path.join(__dirname, 'dist', executablePath);
} else {
2020-10-22 01:43:52 +03:00
throw new Error('Electron failed to install correctly, please delete node_modules/electron and try installing again');
}
2016-12-27 02:17:48 +03:00
}
2020-10-22 01:43:52 +03:00
module.exports = getElectronPath();