aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/guix-build-coordinator-agent.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/guix-build-coordinator-agent.in b/scripts/guix-build-coordinator-agent.in
index eff66e4..89bd375 100644
--- a/scripts/guix-build-coordinator-agent.in
+++ b/scripts/guix-build-coordinator-agent.in
@@ -42,6 +42,11 @@
(lambda (opt name arg result)
(alist-cons 'password
arg
+ result)))
+ (option '("substitute-urls") #t #f
+ (lambda (opt name arg result)
+ (alist-cons 'substitute-urls
+ (string-split arg #\space)
result)))))
(define %option-defaults
@@ -65,4 +70,5 @@
(cdr (program-arguments)))))
(run-agent (assq-ref opts 'uuid)
(assq-ref opts 'coordinator)
- (assq-ref opts 'password)))
+ (assq-ref opts 'password)
+ (assq-ref opts 'substitute-urls)))