summaryrefslogtreecommitdiff
path: root/guix/scripts/pull.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-25 15:05:15 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-29 15:32:18 +0200
commit131f50cdc9dbb7183023f4dae759876a9e700bef (patch)
tree2b2927f1f4e5930e464aeb0f4ed43522e4a97302 /guix/scripts/pull.scm
parent710854304b1ab29332edcb76f3de532e0724c197 (diff)
downloadguix-patches-131f50cdc9dbb7183023f4dae759876a9e700bef.tar
guix-patches-131f50cdc9dbb7183023f4dae759876a9e700bef.tar.gz
'--dry-run' no longer implies '--no-grafts'.
* guix/scripts/archive.scm (%options): "dry-run" option no longer adds 'graft? #f to RESULT. * guix/scripts/environment.scm (%options): Likewise. * guix/scripts/pack.scm (%options): Likewise. * guix/scripts/package.scm (%options): Likewise. * guix/scripts/pull.scm (%options): Likewise. * guix/scripts/system.scm (%options): Likewise.
Diffstat (limited to 'guix/scripts/pull.scm')
-rw-r--r--guix/scripts/pull.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm
index b7e0a4a416..42c9956136 100644
--- a/guix/scripts/pull.scm
+++ b/guix/scripts/pull.scm
@@ -168,7 +168,7 @@ Download and deploy the latest version of Guix.\n"))
(alist-delete 'system result eq?))))
(option '(#\n "dry-run") #f #f
(lambda (opt name arg result)
- (alist-cons 'dry-run? #t (alist-cons 'graft? #f result))))
+ (alist-cons 'dry-run? #t result)))
(option '(#\v "verbosity") #t #f
(lambda (opt name arg result)
(let ((level (string->number* arg)))