Commit 69e7368

Anton Golub <antongolub@antongolub.com>
2024-05-20 10:17:28
fix: bound `--quiet` flag with `$.quiet` (#813)
1 parent 0073c51
Changed files (1)
src/cli.ts
@@ -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