[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#63036: -v or --verbose CLI argument input is undocumented in the CLI
From: |
Simon Tournier |
Subject: |
bug#63036: -v or --verbose CLI argument input is undocumented in the CLI |
Date: |
Tue, 25 Apr 2023 14:36:24 +0200 |
Hi,
On Sun, 23 Apr 2023 at 15:27, "jgart" via Bug reports for GNU Guix
<bug-guix@gnu.org> wrote:
> Hmmm, what is the type and/or range of inputs that are valid for
> LEVEL?
What about this patch?
diff --git a/guix/scripts/build.scm b/guix/scripts/build.scm
index 72a24f91ac..35cb888c3b 100644
--- a/guix/scripts/build.scm
+++ b/guix/scripts/build.scm
@@ -452,8 +452,10 @@ (define (show-help)
-r, --root=FILE make FILE a symlink to the result, and register it
as a garbage collector root"))
(display (G_ "
- -v, --verbosity=LEVEL use the given verbosity LEVEL"))
- (display (G_ "
+ -v, --verbosity=LEVEL use the given verbosity LEVEL, range 0-3
+ 0 = no output, 1 = quiet, 2 = 1 + download URLs,
+ 3 = all on standard error"))
+ (display (G_ "
-q, --quiet do not show the build log"))
(display (G_ "
--log-file return the log file names for the given derivations"))
Cheers,
simon