deploy: Honor '--no-grafts'.

* guix/scripts/deploy.scm (guix-deploy): Parameterize '%graft?'.
This commit is contained in:
宋文武 2019-07-20 12:45:34 +08:00
parent 7304d5623a
commit 2fa23d8f5c
No known key found for this signature in database
GPG key ID: D415BF253B515976

View file

@ -23,6 +23,7 @@ (define-module (guix scripts deploy)
#:use-module (guix scripts build)
#:use-module (guix store)
#:use-module (guix ui)
#:use-module (guix grafts)
#:use-module (ice-9 format)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-37)
@ -80,5 +81,6 @@ (define (handle-argument arg result)
(set-build-options-from-command-line store opts)
(for-each (lambda (machine)
(info (G_ "deploying to ~a...") (machine-display-name machine))
(run-with-store store (deploy-machine machine)))
(parameterize ((%graft? (assq-ref opts 'graft?)))
(run-with-store store (deploy-machine machine))))
machines))))