Skip to content

Commit

Permalink
add error print
Browse files Browse the repository at this point in the history
  • Loading branch information
ApricotLace committed Mar 12, 2024
1 parent e036c05 commit 9c149ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zen/fhir/tooling_packages.clj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +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))]
(throw (ex-info "Release error" {:error error}))
(do (throw (ex-info "Release error" {:error error}))
(println (format "RELEASE ERROR:\n%s" error)))
(->> (map :package-git-url release-result)
(clojure.string/join "\n")))))

Expand Down

0 comments on commit 9c149ef

Please sign in to comment.