We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca5c2d commit bd5b69bCopy full SHA for bd5b69b
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