Skip to content

Commit

Permalink
update GIT_SSL_NO_VERIFY
Browse files Browse the repository at this point in the history
  • Loading branch information
vmunishwar committed Oct 3, 2023
1 parent 4963a84 commit a4a1a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/vendir/fetch/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (t *Git) fetch(dstPath string, tempArea ctlfetch.TempArea) error {
env = append(env, "GIT_LFS_SKIP_SMUDGE=1")
}
if t.opts.SkipSSLVerification {
env = append(env, "GIT_SSL_NO_VERIFY = true")
env = append(env, "GIT_SSL_NO_VERIFY=true")
}
gitURL := t.opts.URL
gitCredsPath := filepath.Join(authDir, ".git-credentials")
Expand Down

0 comments on commit a4a1a2b

Please sign in to comment.