Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 313bba0

Browse files
committed
Make git commands nosier. This should prevent us from thinking they have died when they haven't.
1 parent 911cd22 commit 313bba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/gps/vcs_repo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func newVcsLocalErrorOr(msg string, err error, out string) error {
8080
}
8181

8282
func (r *gitRepo) get(ctx context.Context) error {
83-
out, err := runFromCwd(ctx, "git", "clone", "--recursive", r.Remote(), r.LocalPath())
83+
out, err := runFromCwd(ctx, "git", "clone", "--recursive", "-v", "--progress", r.Remote(), r.LocalPath())
8484
if err != nil {
8585
return newVcsRemoteErrorOr("unable to get repository", err, string(out))
8686
}

0 commit comments

Comments
 (0)