tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
2020-10-15T01:07:14.370100Z

The new git-resolve-tags command appears to have a bug. Someone reported this to me today and I've been able to reproduce as well:

$ cat deps.edn 
{:deps
 {github-jacobobryant/biff
  {:git/url "<https://github.com/jacobobryant/biff>"
   :tag "HEAD"}}}
$ clj -X:deps git-resolve-tags
Error building classpath. Library github-jacobobryant/biff has :tag but no :sha.
Add :sha or run `clj -Sresolve-tags` to update deps.edn.
$ clj -Sresolve-tags
Option changed, use: clj -X:deps git-resolve-tags
$ clj --help | head -n 1
Version: 1.10.1.697

alexmiller 2020-10-20T21:24:45.423100Z

fix for this will be in the next prerelease version, coming shortly

alexmiller 2020-10-20T21:37:17.423500Z

available in 1.10.1.723

alexmiller 2020-10-15T03:03:59.371400Z

heh, thanks for the report

🎅 1