Skip to content

Commit

Permalink
Make git commands nosier. This should prevent us from thinking they h…
Browse files Browse the repository at this point in the history
…ave died when they haven't.
  • Loading branch information
DDRBoxman committed Jul 20, 2017
1 parent 911cd22 commit 313bba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gps/vcs_repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func newVcsLocalErrorOr(msg string, err error, out string) error {
}

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

0 comments on commit 313bba0

Please sign in to comment.