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

Commit ea735f9

Browse files
committed
Use expensive timeout for git checkout
This can be slow on large repos, but also often seems to be particularly slow on windows. Adding --progress would help with this, but we probably need to sniff versions for that. Fixes #948
1 parent 9e16c38 commit ea735f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/gps/vcs_repo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func (r *gitRepo) fetch(ctx context.Context) error {
9898
}
9999

100100
func (r *gitRepo) updateVersion(ctx context.Context, v string) error {
101-
out, err := runFromRepoDir(ctx, r, defaultCmdTimeout, "git", "checkout", v)
101+
out, err := runFromRepoDir(ctx, r, expensiveCmdTimeout, "git", "checkout", v)
102102
if err != nil {
103103
return newVcsLocalErrorOr("Unable to update checked out version", err, string(out))
104104
}

0 commit comments

Comments
 (0)