Skip to content
Snippets Groups Projects
Unverified Commit 5ffb2c30 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

bin: Remove redundant lambda.

* bin/cuirass.in (main): Remove redundant lambda wrapping in for-each.
parent 918601d9
No related branches found
No related tags found
No related merge requests found
......@@ -130,8 +130,7 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@"
(lambda ()
(set-current-module (make-user-module '()))
(primitive-load specfile)))))
(for-each (lambda (spec) (db-add-specification spec))
new-specs)))
(for-each db-add-specification new-specs)))
(if one-shot?
(process-specs (db-get-specifications))
(let ((exit-channel (make-channel)))
......
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