blob: 60aee6a22800fbb98603dd19550d9e149f42b394 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
if [ -e "src/clj/datomic/db.clj" ]; then
echo $CLOJURE_JAR${CLOJURE_JAR+:}target/classes:build/src:bin:src/clj:test/src:samples/clj:`cat build/maven-classpath`:$DATOMIC_EXT_CLASSPATH
else
s="`echo *transactor*.jar`:lib/*"
echo resources:${s// /:}:samples/clj:bin:$DATOMIC_EXT_CLASSPATH
fi
|