removed repl start script from resources

This commit is contained in:
Dan Motzenbecker 2015-10-04 19:06:11 -04:00
parent 99a288be37
commit 89e0a26f9f

View File

@ -1,19 +0,0 @@
#!/bin/bash
if hash rlwrap 2>/dev/null; then
COMMAND="rlwrap lein"
else
COMMAND="lein"
fi
$COMMAND trampoline run -m clojure.main -e \
"(require '[cljs.repl :as repl])
(require '[ambly.core :as ambly])
(let [repl-env (ambly.core/repl-env)]
(cljs.repl/repl repl-env
:watch \"src\"
:watch-fn
(fn []
(cljs.repl/load-file repl-env
\"src/$PROJECT_NAME_UNDERSCORED$/core.cljs\"))
:analyze-path \"src\"))"