profiles: Use a &message error condition instead of 'error'.
* guix/profiles.scm (sexp->manifest): Use 'raise' instead of 'error'.
This commit is contained in:
parent
441cfb420a
commit
88aab8e349
|
@ -278,7 +278,8 @@ procedure is here for backward-compatibility and will eventually vanish."
|
||||||
search-paths))))
|
search-paths))))
|
||||||
name version output path deps search-paths)))
|
name version output path deps search-paths)))
|
||||||
(_
|
(_
|
||||||
(error "unsupported manifest format" sexp))))
|
(raise (condition
|
||||||
|
(&message (message "unsupported manifest format")))))))
|
||||||
|
|
||||||
(define (read-manifest port)
|
(define (read-manifest port)
|
||||||
"Return the packages listed in MANIFEST."
|
"Return the packages listed in MANIFEST."
|
||||||
|
|
Loading…
Reference in New Issue