Skip to content

Commit

Permalink
fix stupid print placement
Browse files Browse the repository at this point in the history
  • Loading branch information
ApricotLace committed Mar 12, 2024
1 parent 9c149ef commit 26fce7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zen/fhir/tooling_packages.clj
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
:produce-remote-ftr-manifests? produce-remote-ftr-manifests?
:ftr-build-deps-coords ftr-build-deps-coords})]
(if-let [error (:error (last release-result))]
(do (throw (ex-info "Release error" {:error error}))
(println (format "RELEASE ERROR:\n%s" error)))
(do (println (format "RELEASE ERROR:\n%s" error))
(throw (ex-info "Release error" {:error error})))
(->> (map :package-git-url release-result)
(clojure.string/join "\n")))))

Expand Down

0 comments on commit 26fce7a

Please sign in to comment.