Can I override the git path being used by goreleaser? #4350
Answered
by
caarlos0
DaChartreux
asked this question in
Q&A
-
I have a deployment pipeline for my services, where we use git version 2.6.1. Now this doesn't support --format option for Can someone help me out? |
Beta Was this translation helpful? Give feedback.
Answered by
caarlos0
Oct 6, 2023
Replies: 1 comment
-
not directly, but i'll always use the first one it can find in the PATH=/your/newer/git/bin/:$PATH goreleaser release ... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DaChartreux
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
not directly, but i'll always use the first one it can find in the
PATH
, so, if you adjust it accordingly it should work:PATH=/your/newer/git/bin/:$PATH goreleaser release ...