diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-01-17 16:52:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-01-17 16:52:49 +0100 |
commit | 9decb18c0b206100d36fac708819a718369cf369 (patch) | |
tree | 993197a1828081b98ff256c8c7a039e12fff13fa | |
parent | 1d50699354141b6f2869fd3b7dc00cda25acacd3 (diff) | |
download | guix-9decb18c0b206100d36fac708819a718369cf369.tar guix-9decb18c0b206100d36fac708819a718369cf369.tar.gz |
guix archive: Remove unused -r/--root option.
* guix/scripts/archive.scm (%options): Remove -r/--root.
-rw-r--r-- | guix/scripts/archive.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/guix/scripts/archive.scm b/guix/scripts/archive.scm index e265f82b52..65bf5423dc 100644 --- a/guix/scripts/archive.scm +++ b/guix/scripts/archive.scm @@ -148,9 +148,6 @@ Export/import one or more packages from/to the store.\n")) (option '(#\n "dry-run") #f #f (lambda (opt name arg result) (alist-cons 'dry-run? #t result))) - (option '(#\r "root") #t #f - (lambda (opt name arg result) - (alist-cons 'gc-root arg result))) %standard-build-options)) |