chore: hide merge-reports command (#22509)

This commit is contained in:
Yury Semikhatsky 2023-04-19 15:36:17 -07:00 committed by GitHub
parent ba8aed9dea
commit b8b929fdea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ Examples:
} }
function addMergeReportsCommand(program: Command) { function addMergeReportsCommand(program: Command) {
const command = program.command('merge-reports [dir]'); const command = program.command('merge-reports [dir]', { hidden: true });
command.description('merge multiple blob reports (for sharded tests) into a single report'); command.description('merge multiple blob reports (for sharded tests) into a single report');
command.action(async (dir, options) => { command.action(async (dir, options) => {
try { try {