~ruther/guix-local

c4ca12c15b27cc13b747c184abde1e9de3c46606 — Ludovic Courtès 13 years ago 4056b82
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.
1 files changed, 2 insertions(+), 1 deletions(-)

M guix/gnu-maintenance.scm
M guix/gnu-maintenance.scm => guix/gnu-maintenance.scm +2 -1
@@ 438,6 438,7 @@ if an update was made, and #f otherwise."
        (begin
          (format (current-error-port)
                  (_ "~a: ~a: no `version' field in source; skipping~%")
                  name (package-location package))))))
                  (location->string (package-location package))
                  name)))))

;;; gnu-maintenance.scm ends here