mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
pack: Correctly report "unknown pack format" errors.
* guix/scripts/pack.scm (guix-pack): Fix "unknown pack format" error message.
This commit is contained in:
parent
8e1395be5c
commit
301aa9e76c
1 changed files with 2 additions and 2 deletions
|
@ -748,8 +748,8 @@ (define (manifest-from-args store opts)
|
||||||
(build-image (match (assq-ref %formats pack-format)
|
(build-image (match (assq-ref %formats pack-format)
|
||||||
((? procedure? proc) proc)
|
((? procedure? proc) proc)
|
||||||
(#f
|
(#f
|
||||||
(leave (G_ "~a: unknown pack format")
|
(leave (G_ "~a: unknown pack format~%")
|
||||||
format))))
|
pack-format))))
|
||||||
(localstatedir? (assoc-ref opts 'localstatedir?)))
|
(localstatedir? (assoc-ref opts 'localstatedir?)))
|
||||||
(run-with-store store
|
(run-with-store store
|
||||||
(mlet* %store-monad ((profile (profile-derivation
|
(mlet* %store-monad ((profile (profile-derivation
|
||||||
|
|
Loading…
Reference in a new issue