deploy: Honor '--no-grafts'.
* guix/scripts/deploy.scm (guix-deploy): Parameterize '%graft?'.
This commit is contained in:
parent
7304d5623a
commit
2fa23d8f5c
|
@ -23,6 +23,7 @@
|
|||
#: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 @@ Perform the deployment specified by FILE.\n"))
|
|||
(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))))
|
||||
|
|
Loading…
Reference in New Issue