From 25800456e891675af61159ca54042b00464a779a Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 29 Dec 2023 08:35:08 +0900 Subject: [PATCH] fix: Fix directories to distinct cf. #241 --- src/antq/core.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/antq/core.clj b/src/antq/core.clj index bd2b4140..0e92aae8 100644 --- a/src/antq/core.clj +++ b/src/antq/core.clj @@ -41,6 +41,7 @@ [antq.util.exception :as u.ex] [antq.util.maven :as u.maven] [antq.util.ver :as u.ver] + [antq.util.file :as u.file] [antq.ver :as ver] [antq.ver.git-sha] [antq.ver.git-tag-and-sha] @@ -293,7 +294,7 @@ (defn main* [options errors] (u.maven/initialize-proxy-setting!) - (let [options (cond-> options + (let [options (cond-> (update options :directory u.file/distinct-directory) ;; Force "format" reporter when :error-format is specified (some? (:error-format options)) (assoc :reporter "format")) deps (and (not errors)