dbgate/setUpdaterChannel.js
2024-09-05 10:20:39 +02:00

15 lines
512 B
JavaScript

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');