From 57ee8a617f3a6b203617b8430fde6b4f46177be6 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Mon, 26 Aug 2024 11:40:26 -0500 Subject: [PATCH] java-command - remove assertion that requires a basis --- src/main/clojure/clojure/tools/build/api.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/clojure/clojure/tools/build/api.clj b/src/main/clojure/clojure/tools/build/api.clj index 8a6f41c..ebd0e85 100644 --- a/src/main/clojure/clojure/tools/build/api.clj +++ b/src/main/clojure/clojure/tools/build/api.clj @@ -185,7 +185,7 @@ Returns map suitable for passing to 'process' with keys: :command-args - coll of command arg strings" [params] - (assert-required "java-command" params [:basis :main]) + (assert-required "java-command" params [:main]) ((requiring-resolve 'clojure.tools.build.tasks.process/java-command) params)) (defn process