diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-17 16:25:30 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-17 22:19:32 +0100 |
commit | fdca1c079b7c1222f097a6f3a60a86e04dc8a1a4 (patch) | |
tree | 83ac9c44ae6550eb07910b14aeca7f7a0ff5f4f4 /guix/scripts/build.scm | |
parent | fd80c705b1768f4b716561c38e77af01e73377b7 (diff) | |
download | gnu-guix-fdca1c079b7c1222f097a6f3a60a86e04dc8a1a4.tar gnu-guix-fdca1c079b7c1222f097a6f3a60a86e04dc8a1a4.tar.gz |
scripts: Remove hyphen in the command name shown by `--version'.
* guix/scripts/build.scm (%options): Remove hyphen from the name passed
to `show-version-and-exit'.
* guix/scripts/download.scm (%options): Likewise.
* guix/scripts/gc.scm (%options): Likewise.
* guix/scripts/import.scm (%options): Likewise.
* guix/scripts/package.scm (%options): Likewise.
Diffstat (limited to 'guix/scripts/build.scm')
-rw-r--r-- | guix/scripts/build.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/build.scm b/guix/scripts/build.scm index 3e241ca9da..7863fb881b 100644 --- a/guix/scripts/build.scm +++ b/guix/scripts/build.scm @@ -105,7 +105,7 @@ Build the given PACKAGE-OR-DERIVATION and return their output paths.\n")) (exit 0))) (option '(#\V "version") #f #f (lambda args - (show-version-and-exit "guix-build"))) + (show-version-and-exit "guix build"))) (option '(#\S "source") #f #f (lambda (opt name arg result) |