builder - updater channel

This commit is contained in:
SPRINX0\prochazka
2024-09-05 10:20:39 +02:00
parent 2bf717a2eb
commit 365e697121
4 changed files with 24 additions and 2 deletions

14
setUpdaterChannel.js Normal file
View File

@@ -0,0 +1,14 @@
const fs = require('fs');
function adjustAppFile(file) {
const channel = process.argv[2];
const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' }));
json.build.mac.publish[0].channel = channel;
json.build.linux.publish[0].channel = channel;
json.build.win.publish[0].channel = channel;
fs.writeFileSync(file, JSON.stringify(json, null, 2), 'utf-8');
}
adjustAppFile('app/package.json');
fs.writeFileSync('app/src/updaterChannel.js', `module.exports = '${process.argv[2]}';`, 'utf-8');