diff options
-rw-r--r-- | guix/upstream.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/guix/upstream.scm b/guix/upstream.scm index dac8153905..9b49d1641f 100644 --- a/guix/upstream.scm +++ b/guix/upstream.scm @@ -515,9 +515,10 @@ this method: ~s") #:key-download key-download)))) (values #f #f #f))) (#f - (raise (formatted-message - (G_ "updater failed to determine available releases for ~a~%") - (package-name package)))))) + ;; Warn rather than abort so that other updates can still take place. + (warning (G_ "updater failed to determine available releases for ~a~%") + (package-name package)) + (values #f #f #f)))) (define* (update-package-source package source hash) "Modify the source file that defines PACKAGE to refer to SOURCE, an |