nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 23 lines 754 B view raw
1--- a/clojure 2+++ b/clojure 3@@ -317,17 +317,17 @@ if "$stale" || "$pom"; then 4 tools_args+=("--threads" "$threads") 5 fi 6 if "$trace"; then 7 tools_args+=("--trace") 8 fi 9 fi 10 11 # If stale, run make-classpath to refresh cached classpath 12-if [[ "$stale" = true && "$describe" = false ]]; then 13+if [[ "$stale" = true && "$describe" = false && -z "$force_cp" ]]; then 14 if "$verbose"; then 15 echo "Refreshing classpath" 16 fi 17 18 "$JAVA_CMD" -classpath "$tools_cp" clojure.main -m clojure.tools.deps.alpha.script.make-classpath2 --config-user "$config_user" --config-project "$config_project" --libs-file "$libs_file" --cp-file "$cp_file" --jvm-file "$jvm_file" --main-file "$main_file" "${tools_args[@]}" 19 fi 20 21 if "$describe"; then 22-- 232.25.0