You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my batch deployment script I am trying to generate the release version from git describe as mentioned in the README using git describe --tags --dirty=-SNAPSHOT (returning for example 1.1.9-7-gf2e285aa-SNAPSHOT). However, The version number doesn't match with the one in my Clojure code as the "g" prefix on the commit number is missing (i.e. 1.1.9-7-f2e285aa-SNAPSHOT).
Would you have any recommendations on how to have them match?
The text was updated successfully, but these errors were encountered:
Would you have any recommendations on how to have them match?
The default describe pattern used in lein-git-inject does not include the "g" prefix the ref group:
In my batch deployment script I am trying to generate the release version from git describe as mentioned in the README using
git describe --tags --dirty=-SNAPSHOT
(returning for example1.1.9-7-gf2e285aa-SNAPSHOT
). However, The version number doesn't match with the one in my Clojure code as the "g" prefix on the commit number is missing (i.e.1.1.9-7-f2e285aa-SNAPSHOT
).Would you have any recommendations on how to have them match?
The text was updated successfully, but these errors were encountered: