TDEPS-187 changed clojure.tools.deps.alpha/calc-basis
, which now merges argmaps
after {:libs libs}
- diff.
I'm running on tools deps at this commit, and I'm unable to add libs.
clojure.tools.deps.alpha.repl/add-libs
calls calc-basis
with initial-basis
as the second argument, which means the :libs
in initial basis replace those calculated by calc-basis
.
Switching the merge order to:
`
clojure
(merge master-edn cp argmaps {:libs libs})
``
enables me to add libs to the classpath.
Is this a regression, or am I holding it wrong?