Skip to content

Commit

Permalink
change tools.json -> cli-config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma committed Oct 21, 2022
1 parent 6558c67 commit e56146a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/verify-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ exec('git diff --name-only origin/main -- .', async (error, stdout) => {
console.log('The changed files:');
console.log(stdout);
if (fileCheckRegex.test(stdout)) {
console.log('tools.json is changed, starting download verification');
console.log('cli-config.json is changed, starting download verification');
try {
await verifyTools();
} catch (err) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
exit(1);
}
} else {
console.log('tools.json is not changed, skipping download verification');
console.log('cli-config.json is not changed, skipping download verification');
}
});

0 comments on commit e56146a

Please # to comment.