Skip to content

Commit

Permalink
fix(repo): git clone output to Stderr (#7561)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangogh authored Oct 8, 2024
1 parent a585e95 commit fdf203c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fanal/artifact/repo/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func cloneRepo(u *url.URL, artifactOpt artifact.Option) (string, error) {
cloneOptions := git.CloneOptions{
URL: u.String(),
Auth: gitAuth(),
Progress: os.Stdout,
Progress: os.Stderr,
InsecureSkipTLS: artifactOpt.Insecure,
}

Expand Down

0 comments on commit fdf203c

Please sign in to comment.