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

Commit

Permalink
Merge pull request #129 from mtnygard/fix-cake-run
Browse files Browse the repository at this point in the history
Fix error with unresolved symbol *fi in 'cake run'
  • Loading branch information
ninjudd committed Aug 29, 2011
2 parents a305408 + 63037c2 commit f58fd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cake/tasks/eval.clj
Expand Up @@ -43,7 +43,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

0 comments on commit f58fd5a

Please sign in to comment.