Skip to content
Snippets Groups Projects
Commit 5453de3d authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

import: hackage: Fix invalid use of 'leave'.

Reported by Paul van der Walt <paul@denknerd.org>
in <http://bugs.gnu.org/21829>.

* guix/scripts/import/hackage.scm (guix-import-hackage): Add missing
  argument in call to 'leave'.
parent 5107232f
No related branches found
No related tags found
No related merge requests found
......@@ -134,9 +134,9 @@ (define (run-importer package-name opts error-fn)
((package-name)
(run-importer package-name opts
(lambda ()
(leave
(_ "failed to download cabal file for package '~a'~%"))
package-name)))
(leave (_ "failed to download cabal file \
for package '~a'~%")
package-name))))
(()
(leave (_ "too few arguments~%")))
((many ...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment