1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/tools/update-homebrew.js

26 lines
782 B
JavaScript
Raw Normal View History

'use strict';
2017-12-04 20:16:14 +02:00
// https://github.com/Homebrew/homebrew-core/blob/master/CONTRIBUTING.md
2019-09-19 23:51:18 +02:00
const rootDir = `${__dirname}/..`;
const { execCommand, downloadFile, fileSha256, unlinkForce } = require('./tool-utils.js');
2017-12-04 20:16:14 +02:00
async function main() {
const url = await execCommand('yarn view joplin dist.tarball');
2019-09-19 23:51:18 +02:00
const targetPath = `${rootDir}/latest-cli.tar.gz`;
2017-12-04 20:16:14 +02:00
await unlinkForce(targetPath);
await downloadFile(url, targetPath);
const sha256 = await fileSha256(targetPath);
await unlinkForce(targetPath);
2019-09-19 23:51:18 +02:00
console.info(`URL = ${url}`);
console.info(`SHA256 = ${sha256}`);
console.info('');
2019-09-19 23:51:18 +02:00
console.info(`brew update && brew bump-formula-pr --strict joplin --url=${url} --sha256=${sha256}`);
2017-12-04 20:16:14 +02:00
}
main().catch((error) => {
console.error('Fatal error');
2017-12-04 20:16:14 +02:00
console.error(error);
});