Fork me on GitHub
#tools-deps
<
2020-10-15
>
Jacob O'Bryant01:10:14

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 ""
   :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

Alex Miller (Clojure team)21:10:45

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

Alex Miller (Clojure team)21:10:17

available in 1.10.1.723

Alex Miller (Clojure team)03:10:59

heh, thanks for the report

🎅 3