diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-07-07 01:18:21 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-07 18:10:31 +0200 |
commit | 7a369f6d2f3509d39f5f702aa2ced44d8d3636af (patch) | |
tree | 6d268fe865f19040464ceaa5ef3724893c5c2e5e /guix/scripts | |
parent | 22e60e1b3240d783a6de2894f5c9f686cf3f4a96 (diff) |
weather: Fix pasto in --version output.
* guix/scripts/weather.scm (%options): Correct the command name passed to
show-version-and-exit.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/weather.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/weather.scm b/guix/scripts/weather.scm index d7c2fbea10..98b7338fb9 100644 --- a/guix/scripts/weather.scm +++ b/guix/scripts/weather.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2018 Kyle Meyer <kyle@kyleam.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -269,7 +270,7 @@ Report the availability of substitutes.\n")) (exit 0))) (option '(#\V "version") #f #f (lambda args - (show-version-and-exit "guix challenge"))) + (show-version-and-exit "guix weather"))) (option '("substitute-urls") #t #f (lambda (opt name arg result . rest) |