Skip to content

Commit

Permalink
fix: bound --quiet flag with $.quiet (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub authored May 20, 2024
1 parent 0073c51 commit 69e7368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const argv = minimist(process.argv.slice(2), {
await import('./globals.js')
if (argv.cwd) $.cwd = argv.cwd
if (argv.verbose) $.verbose = true
if (argv.quiet) $.verbose = false
if (argv.quiet) $.quiet = true
if (argv.shell) $.shell = argv.shell
if (argv.prefix) $.prefix = argv.prefix
if (argv.postfix) $.postfix = argv.postfix
Expand Down

0 comments on commit 69e7368

Please sign in to comment.