diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-25 23:44:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-26 16:19:53 +0200 |
commit | 6b2e91b1fc75445d6c4b4e2de338d21aada063b9 (patch) | |
tree | ef0e0bb0b67c436c150b363b1d72b3ded303f764 | |
parent | 25b267afedcaee003f08f40d63d59acbbc0fad8a (diff) | |
download | guix-6b2e91b1fc75445d6c4b4e2de338d21aada063b9.tar.gz guix-6b2e91b1fc75445d6c4b4e2de338d21aada063b9.zip |
challenge: Fix option indentation in '--help' output.
* guix/scripts/challenge.scm (show-help): Indent '--verbose' and
'--diff' correctly (high tech!).
-rw-r--r-- | guix/scripts/challenge.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/challenge.scm b/guix/scripts/challenge.scm index 65e2427033..624f51b200 100644 --- a/guix/scripts/challenge.scm +++ b/guix/scripts/challenge.scm @@ -416,9 +416,9 @@ Challenge the substitutes for PACKAGE... provided by one or more servers.\n")) --substitute-urls=URLS compare build results with those at URLS")) (display (G_ " - -v, --verbose show details about successful comparisons")) + -v, --verbose show details about successful comparisons")) (display (G_ " - --diff=MODE show differences according to MODE")) + --diff=MODE show differences according to MODE")) (newline) (display (G_ " -h, --help display this help and exit")) |