diff options
author | Nikolaos Chatzikonstantinou <nchatz314@gmail.com> | 2023-09-21 01:02:23 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-09-28 11:44:09 +0200 |
commit | c6eed13c8713c7d56d148afad9facded5ebb8a1f (patch) | |
tree | 53189c6e95ffd1caa454898449ac204bc008a413 /guix/scripts/archive.scm | |
parent | 843978bc4f6d17a70ffbcf6da288ce6d8f5fb85c (diff) |
archive: Fix ‘--version’ typo.
* guix/scripts/archive.scm (%options): Replace 'build' by 'archive'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts/archive.scm')
-rw-r--r-- | guix/scripts/archive.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/scripts/archive.scm b/guix/scripts/archive.scm index a7ff1593a6..e32f22ec99 100644 --- a/guix/scripts/archive.scm +++ b/guix/scripts/archive.scm @@ -123,8 +123,7 @@ Export/import one or more packages from/to the store.\n")) (exit 0))) (option '(#\V "version") #f #f (lambda args - (show-version-and-exit "guix build"))) - + (show-version-and-exit "guix archive"))) (option '("export") #f #f (lambda (opt name arg result) (alist-cons 'export #t result))) |