Running clojurescript from Cygwin

Troubleshooting guide.

These tells you what the script is trying to do.

bash -x script/deps
bash -x script/run

Here’s mine once cleaned up. I used java.ext.dirs as I don’t think wildcards on classpath worked.

$ java -server -cp 'lib;lib/dev;lib/clojurescript/src/clj;lib/clojurescript/src/cljs;lib/clojurescript/test/cljs;lib/do
mina/src/cljs;src/app/clj;src/app/cljs;src/app/cljs-macros;src/lib/clj;src/lib/cljs;test;templates' '-Djava.ext.dirs=li
b;lib/dev;lib/clojurescript/src/clj;lib/clojurescript/src/cljs;lib/clojurescript/test/cljs;lib/domina/src/cljs;src/app/
clj;src/app/cljs;src/app/cljs-macros;src/lib/clj;src/lib/cljs;test;templates' jline.ConsoleRunner clojure.main -e '(use
 '\''one.sample.dev-server)
 (run-server)
 (println "The application is being served from localhost:8080")' --repl

About this entry