We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7153e4d commit 4d793bcCopy full SHA for 4d793bc
nix/mobile/jsbundle/default.nix
@@ -68,8 +68,8 @@ stdenv.mkDerivation {
68
buildPhase = ''
69
# Assemble CLASSPATH from available clojure dependencies.
70
# We append 'src' so it can find the local sources.
71
- export CLASS_PATH="$(find ${deps.clojure} \
72
- -iname '*.jar' | tr '\n' ':')src"
+ export CLASS_PATH="src:$(find ${deps.clojure} \
+ -iname '*.jar' | tr '\n' ':')"
73
74
# target must be one of the builds defined in shadow-cljs.edn
75
java -cp "$CLASS_PATH" clojure.main \
0 commit comments