You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
921 B
JavaScript
34 lines
921 B
JavaScript
var fs = require('fs');
|
|
var _ = require('lodash');
|
|
var execSync = require('child_process').execSync;
|
|
|
|
const updateLocalConfig = () => {
|
|
var environment = process.env.SIGNAL_ENV || 'production';
|
|
var configPath = `config/local-${environment}.json`;
|
|
var localConfig;
|
|
|
|
var hash = '';
|
|
try {
|
|
// TODO make sure that this works well on windows and macOS builds
|
|
var stdout = execSync('git rev-parse HEAD').toString();
|
|
console.info('"git rev-parse HEAD" result: ', stdout && stdout.trim());
|
|
|
|
if (!_.isEmpty(stdout)) {
|
|
hash = stdout.trim();
|
|
}
|
|
var rawdata = fs.readFileSync(configPath);
|
|
localConfig = JSON.parse(rawdata);
|
|
} catch (e) {
|
|
console.error('updateLocalConfig failed with', e.message);
|
|
}
|
|
|
|
localConfig = {
|
|
...localConfig,
|
|
commitHash: hash,
|
|
};
|
|
var toWrite = `${JSON.stringify(localConfig)}\n`;
|
|
fs.writeFileSync(configPath, toWrite);
|
|
};
|
|
|
|
updateLocalConfig();
|