mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 04:00:59 +00:00
15 lines
512 B
JavaScript
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');
|