From de5759dde5dabc2d77dbeb70e3fe8d4774b3fefc Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 15 Dec 2024 15:52:34 -0600 Subject: [PATCH] maybe, maybe not --- go-clone-test/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go-clone-test/main.go b/go-clone-test/main.go index cb49a69..ed0a682 100644 --- a/go-clone-test/main.go +++ b/go-clone-test/main.go @@ -105,7 +105,7 @@ func prepBinary(testDir string, gopath string) { os.Unsetenv("FORGE_CONFIG") os.Unsetenv("FORGE_GOSRC") runStrict(wd, []string{"sync"}) - runStrict(wd, []string{"/home/jcarr/go/bin/go-clone", "--recursive", gopath, "--work"}) + runStrict(wd, []string{"/home/jcarr/go/bin/go-clone", "--recursive", gopath, "--work", "--ignore"}) // runStrict(wd, []string{"/home/jcarr/go/bin/go-clone", "--work"}) } @@ -133,7 +133,7 @@ func installBinary(testDir string, gopath string) { repo := repos.Next() log.Info("go.work repo (hopefully):", repo.GoPath, repo.FullPath, repo.RepoType()) } - runStrict(wd, []string{"go-clone", "--install", gopath}) + runStrict(wd, []string{"go-clone", "--install", gopath, "--ignore"}) os.Exit(-1) }