diff options
-rw-r--r-- | guix/scripts/refresh.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/refresh.scm b/guix/scripts/refresh.scm index a6589ae315..2d08607328 100644 --- a/guix/scripts/refresh.scm +++ b/guix/scripts/refresh.scm @@ -61,7 +61,7 @@ (define %default-options ;; Alist of default option values. - '()) + '((key-download . auto))) (define %options ;; Specification of the command-line options. @@ -135,7 +135,7 @@ (option '("key-download") #t #f (lambda (opt name arg result) (match arg - ((or "interactive" "always" "never") + ((or "auto" "interactive" "always" "never") (alist-cons 'key-download (string->symbol arg) result)) (x |