Welcome! Please see the About page for a little more info on how this works.

0 votes
in Tools by

Although you can clojure -Ttools show :tool something, you don't get much information back about it and you can't use the new -X:deps help/doc on it because it isn't loaded via an alias.

Please add help/doc and help/dir to -Ttools so that it is easier to get help/documentation for the installed tools.

1 Answer

+1 vote
by
selected by
 
Best answer

Yeah, we have a ticket for this https://clojure.atlassian.net/browse/TDEPS-187

by
That didn't fix things fully. The following does not work:

clojure -A:deps -Tdepstar help/doc

This provides help for clojure.tools.cli.api instead of depstar (which has :tools/usage with an :ns-default of hf.depstar)

These two do work as expected:

clojure -A:deps -Tdepstar help/doc :ns hf.depstar

clojure -A:deps -Tdepstar help/doc :fn hf.depstar/pom

I don't know whether you want to reopen TDEPS-187 or create a new ticket for this (assuming the :ns-default _should_ be in effect here)?
by
re-re-fixed in 1.10.3.916
Welcome to Clojure Q&A, where you can ask questions and receive answers from members of the Clojure community.
...