homebrew-install/bin/update.js
2022-03-09 19:04:17 +08:00

62 lines
1.6 KiB
JavaScript

#!/usr/bin/env node
'use strict';
const path = require('path');
const chalk = require('chalk');
const fsExtra = require('fs-extra');
const ora = require('ora');
const download = require('download-git-repo');
const cwd = process.cwd();
const origin = 'Homebrew/install';
const branch = '#master';
const targetPath = path.join(cwd, 'lib');
fsExtra.emptyDirSync(path.join(targetPath));
const spinner = ora(`downloading ${origin}...`);
spinner.start();
download(`${origin}${branch}`, targetPath, { clone: false }, function(err) {
spinner.stop();
if (err) {
console.log(
chalk.red(
`Failed to download repo https://github.com/${origin}${branch}`,
err,
),
);
} else {
console.log(
chalk.green(
`Success to download repo https://github.com/${origin}${branch}`,
),
);
try {
fsExtra.removeSync(path.join(targetPath, '.github/ISSUE_TEMPLATE'));
fsExtra.removeSync(
path.join(targetPath, '.github/workflows/triage-issues.yml'),
);
fsExtra.removeSync(path.join(targetPath, '.github/ISSUE_TEMPLATE.md'));
fsExtra.removeSync(path.join(targetPath, 'install'));
fsExtra.removeSync(path.join(targetPath, 'uninstall'));
fsExtra.removeSync(path.join(targetPath, 'LICENSE.txt'));
fsExtra.removeSync(path.join(targetPath, 'README.md'));
fsExtra.moveSync(
path.join(targetPath, '.github/workflows/tests.yml'),
path.join(cwd, '.github/workflows/tests.yml'),
{ overwrite: true },
);
console.log(chalk.green('Done!'));
} catch (e) {
console.log(e.message);
}
}
});