What is the command to only resolve dependencies with tools-deps and not start a repl? I need it for CI.
clj -e nil
is sufficient. current prereleases have a new -P
(prepare) switch for this purpose.
thanks!
@timok you'll want clojure -e nil
instead of clj
if you don't have an interactive terminal
in CI
ok, cool
I never understood the differences though
Clj calls rlwrap. So adds things like up/down.
right, sorry
awesome, thanks for the answers :thumbsup:
For better logging in multi-step builds, I sometimes do clojure -Srepro -e '(println "Dependencies downloaded")'
.