diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-07 22:54:54 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-07 22:54:54 +0100 |
commit | cc57f25d96f3007682a4e41a8b5871f05f76e23f (patch) | |
tree | 4f292796491f9e3ae24a164f30be9cac132fbd6d /guix-package.in | |
parent | ad85c617b5889ed60b154a249d6c4339bc51eac1 (diff) | |
download | guix-cc57f25d96f3007682a4e41a8b5871f05f76e23f.tar guix-cc57f25d96f3007682a4e41a8b5871f05f76e23f.tar.gz |
guix-package: Remove `-b' shorthand for `--bootstrap'.
* guix-package.in (%options): Remove #\b as an alternate for
"bootstrap".
(show-help): Adjust accordingly.
* tests/guix-package.sh: Use `--bootstrap' instead of `-b'.
Diffstat (limited to 'guix-package.in')
-rw-r--r-- | guix-package.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-package.in b/guix-package.in index 4dc625778b..628a2b595f 100644 --- a/guix-package.in +++ b/guix-package.in @@ -201,7 +201,7 @@ Install, remove, or upgrade PACKAGES in a single transaction.\n")) (display (_ " -n, --dry-run show what would be done without actually doing it")) (display (_ " - -b, --bootstrap use the bootstrap Guile to build the profile")) + --bootstrap use the bootstrap Guile to build the profile")) (display (_ " --verbose produce verbose output")) (newline) @@ -242,7 +242,7 @@ Install, remove, or upgrade PACKAGES in a single transaction.\n")) (option '(#\n "dry-run") #f #f (lambda (opt name arg result) (alist-cons 'dry-run? #t result))) - (option '(#\b "bootstrap") #f #f + (option '("bootstrap") #f #f (lambda (opt name arg result) (alist-cons 'bootstrap? #t result))) (option '("verbose") #f #f |