diff options
Diffstat (limited to 'rsh/e2e_test.go')
| -rw-r--r-- | rsh/e2e_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsh/e2e_test.go b/rsh/e2e_test.go index 1fa80c7..88cd317 100644 --- a/rsh/e2e_test.go +++ b/rsh/e2e_test.go @@ -23,7 +23,7 @@ func TestEndToEndRealRsync(t *testing.T) { // Build the rsh binary so rsync can exec it as its remote shell. rshBin := filepath.Join(t.TempDir(), "rsh") - if out, err := exec.Command("go", "build", "-o", rshBin, ".").CombinedOutput(); err != nil { + if out, err := exec.Command("go", "build", "-buildvcs=false", "-o", rshBin, ".").CombinedOutput(); err != nil { t.Fatalf("build rsh: %v\n%s", err, out) } |