Skip to content

Commit

Permalink
Signed-off-by: tooptoop4 <[email protected]>
Browse files Browse the repository at this point in the history
  • Loading branch information
tooptoop4 authored Nov 6, 2024
1 parent 8e18552 commit 0aca7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/artifacts/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (g *ArtifactDriver) Load(inputArtifact *wfv1.Artifact, path string) error {
// Azure DevOps requires multi_ack* capabilities which go-git does not currently support
// Workaround: removing these from UnsupportedCapabilities allows clones to work (see https://github.com/go-git/go-git/pull/613)
var newCaps []capability.Capability
if a.Repo && strings.Contains(a.Repo, "dev.azure.com") {
if strings.Contains(a.Repo, "dev.azure.com") {
for _, c := range transport.UnsupportedCapabilities {
if c == capability.MultiACK || c == capability.MultiACKDetailed {
continue
Expand Down

0 comments on commit 0aca7c8

Please sign in to comment.