gnu-maintenance: Fix error message of `update-package-source'.
* guix/gnu-maintenance.scm (update-package-source): In the (not loc) case, pass the location first and convert it to a string.
This commit is contained in:
parent
4056b82882
commit
c4ca12c15b
|
@ -438,6 +438,7 @@ if an update was made, and #f otherwise."
|
||||||
(begin
|
(begin
|
||||||
(format (current-error-port)
|
(format (current-error-port)
|
||||||
(_ "~a: ~a: no `version' field in source; skipping~%")
|
(_ "~a: ~a: no `version' field in source; skipping~%")
|
||||||
name (package-location package))))))
|
(location->string (package-location package))
|
||||||
|
name)))))
|
||||||
|
|
||||||
;;; gnu-maintenance.scm ends here
|
;;; gnu-maintenance.scm ends here
|
||||||
|
|
Loading…
Reference in New Issue