Closed liquidz closed 3 years ago
Currently :artifct must be set in deps.edn, and when I set by clojure command, the follwoing error is occurred.
:artifct
deps.edn
clojure
$ clojure -X:install :artifact 'foo.jar' Execution error (ClassCastException) at deps-deploy.deps-deploy/extension (deps_deploy.clj:26). clojure.lang.Symbol cannot be cast to java.lang.CharSequence
Params for -X option seems to be handled as Symbol, so I corerce artifact to String.
-X
Symbol
artifact
String
Problem
Currently
:artifct
must be set indeps.edn
, and when I set byclojure
command, the follwoing error is occurred.How to solve
Params for
-X
option seems to be handled asSymbol
, so I corerceartifact
toString
.