Skip to content

Commit

Permalink
fix: Fix directories to distinct
Browse files Browse the repository at this point in the history
cf. #241
  • Loading branch information
liquidz committed Dec 28, 2023
1 parent 2715bb5 commit 2580045
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/antq/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 2580045

Please sign in to comment.