Skip to content
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.

Fix error with unresolved symbol *fi in 'cake run' #129

Merged
merged 1 commit into from
Aug 29, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cake/tasks/eval.clj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
(bake [script (with-root *pwd* (str (file script)))
args (rest (drop-while (partial not= script) *args*))]
(binding [*command-line-args* args]
(load-file *fi)))))
(load-file script)))))

(deftask repl #{compile-java}
"Start an interactive shell with history and tab completion."
Expand Down