Brenton <bashw...@gmail.com> writes:

> Today we are releasing ClojureScript One. A project to help you get
> started writing single-page applications in ClojureScript.

The "script/run" script does not work on cygwin. Here is a patch
to fix it.

-- 
Dimitre Liotev

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
diff --git a/script/setup_classpath.sh b/script/setup_classpath.sh
index a3df95d..3dd7fca 100644
--- a/script/setup_classpath.sh
+++ b/script/setup_classpath.sh
@@ -6,3 +6,7 @@ for next in 'src/clj' 'src/cljs' 'test/cljs'; do
 done
 
 CLJSC_CP=$CLJSC_CP':lib/domina/src/cljs:src/app/clj:src/app/cljs:src/app/cljs-macros:src/lib/clj:src/lib/cljs:test:templates'
+
+if [[ `uname` == CYGWIN* ]]; then
+  CLJSC_CP=`cygpath -mp ${CLJSC_CP}`
+fi

Reply via email to