Skip to content

Commit

Permalink
Include native deps in artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
oakes committed Sep 1, 2019
1 parent 65b82fd commit db9cc07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prod.clj
Expand Up @@ -48,15 +48,15 @@
(defmethod task "install"
[_]
(-> (read-project-clj)
(merge (read-deps-edn []))
(merge (read-deps-edn [:linux :macos :windows]))
p/init-project
install)
(System/exit 0))

(defmethod task "deploy"
[_]
(-> (read-project-clj)
(merge (read-deps-edn []))
(merge (read-deps-edn [:linux :macos :windows]))
p/init-project
(deploy "clojars"))
(System/exit 0))
Expand Down

0 comments on commit db9cc07

Please sign in to comment.