Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
fix #18 by calling resolve-path
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Mar 6, 2022
1 parent 1eeb230 commit 4d45fdd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

* v0.7.next in progress
* Fix [#18](https://github.com/seancorfield/build-clj/issues/18) by using `resolve-path` from `tools.build`.

* v0.7.0 5d2cb60 -- 2022-02-24
* Update `tools.build` to v0.8.0 for various enhancements and bug fixes.

Expand Down
2 changes: 1 addition & 1 deletion src/org/corfield/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
jar-file (or jar-file (default-jar-file target lib version))
dd-deploy (try (requiring-resolve 'deps-deploy.deps-deploy/deploy) (catch Throwable _))]
(if dd-deploy
(dd-deploy (merge {:installer :remote :artifact jar-file
(dd-deploy (merge {:installer :remote :artifact (b/resolve-path jar-file)
:pom-file (b/pom-path {:lib lib :class-dir class-dir})}
opts))
(throw (ex-info "deps-deploy is not available in the 'slim' build-clj" {}))))
Expand Down

0 comments on commit 4d45fdd

Please sign in to comment.