2022-10-25 06:44:43 +00:00
|
|
|
const { spawnSync } = require('child_process');
|
2022-10-25 18:27:10 +00:00
|
|
|
const path = require('path');
|
2022-10-25 06:44:43 +00:00
|
|
|
|
|
|
|
module.exports.getElectronVersion = () => {
|
|
|
|
// Find the nearest tag to the current HEAD
|
|
|
|
// This is equivilant to our old logic of "use a value in package.json" for the following reasons
|
|
|
|
//
|
|
|
|
// 1. Whenever we updated the package.json we ALSO pushed a tag with the same version
|
|
|
|
// 2. Whenever we _reverted_ a bump all we actually did was push a commit that deleted the tag and changed the version number back
|
|
|
|
//
|
|
|
|
// The only difference in the "git describe" technique is that technically a commit can "change" it's version
|
|
|
|
// number if a tag is created / removed retroactively. i.e. the first time a commit is pushed it will be 1.2.3
|
|
|
|
// and after the tag is made rebuilding the same commit will result in it being 1.2.4
|
2022-10-25 18:27:10 +00:00
|
|
|
const output = spawnSync('git', ['describe', '--tags', '--abbrev=0'], {
|
|
|
|
cwd: path.resolve(__dirname, '..', '..')
|
|
|
|
});
|
2022-10-25 06:44:43 +00:00
|
|
|
if (output.status !== 0) {
|
|
|
|
console.error(output.stderr);
|
|
|
|
throw new Error('Failed to get current electron version');
|
|
|
|
}
|
2022-10-27 00:56:02 +00:00
|
|
|
return output.stdout.toString().trim().replace(/^v/g, '');
|
2022-10-25 06:44:43 +00:00
|
|
|
};
|