mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
refresh: Remove exception catch-all.
* guix/scripts/refresh.scm (update-package): Remove 'catch #t'.
This commit is contained in:
parent
bcb571cba4
commit
577e750580
1 changed files with 2 additions and 6 deletions
|
@ -153,12 +153,8 @@ (define* (update-package store package updaters
|
|||
KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed
|
||||
values: 'interactive' (default), 'always', and 'never'."
|
||||
(let-values (((version tarball)
|
||||
(catch #t
|
||||
(lambda ()
|
||||
(package-update store package updaters
|
||||
#:key-download key-download))
|
||||
(lambda _
|
||||
(values #f #f))))
|
||||
(package-update store package updaters
|
||||
#:key-download key-download))
|
||||
((loc)
|
||||
(or (package-field-location package 'version)
|
||||
(package-location package))))
|
||||
|
|
Loading…
Reference in a new issue