mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-28 19:53:53 -06:00
20 lines
549 B
JavaScript
20 lines
549 B
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
const crypto = require('crypto');
|
|
|
|
const yaml = require('js-yaml');
|
|
|
|
const INSTALLERS_URL = 'https://static.symphony.com/sda/';
|
|
|
|
function updateYamlFile(yamlFilePath) {
|
|
let doc = yaml.load(fs.readFileSync(yamlFilePath, 'utf-8'));
|
|
doc.files[0].url = INSTALLERS_URL + doc.files[0].url;
|
|
doc.path = INSTALLERS_URL + doc.path;
|
|
fs.writeFileSync(yamlFilePath, yaml.dump(doc, { lineWidth: -1 }));
|
|
}
|
|
|
|
(async () => {
|
|
const yamlFilePath = process.argv[2];
|
|
updateYamlFile(yamlFilePath);
|
|
})();
|