From 3560c505902643aeffd896d499eb0b78c9435e32 Mon Sep 17 00:00:00 2001 From: JacksonLei123 Date: Sat, 23 Nov 2024 19:02:01 -0500 Subject: [PATCH] feat: change description for program option during npx install --- packages/playwright-core/src/cli/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-core/src/cli/program.ts b/packages/playwright-core/src/cli/program.ts index c27b6d2be4..35dfd7d98c 100644 --- a/packages/playwright-core/src/cli/program.ts +++ b/packages/playwright-core/src/cli/program.ts @@ -146,7 +146,7 @@ program .option('--force', 'force reinstall of stable browser channels') .option('--only-shell', 'only install headless shell when installing chromium') .option('--no-shell', 'do not install chromium headless shell') - .option('--quiet', 'hide logs while installing') + .option('--quiet', 'do not print logs while installing') .action(async function(args: string[], options: { withDeps?: boolean, force?: boolean, dryRun?: boolean, shell?: boolean, noShell?: boolean, onlyShell?: boolean, quiet?: boolean }) { // For '--no-shell' option, commander sets `shell: false` instead. if (options.shell === false)