maybe, maybe not

This commit is contained in:
Jeff Carr 2024-12-15 15:52:34 -06:00
parent 41b716d644
commit de5759dde5
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ func prepBinary(testDir string, gopath string) {
os.Unsetenv("FORGE_CONFIG") os.Unsetenv("FORGE_CONFIG")
os.Unsetenv("FORGE_GOSRC") os.Unsetenv("FORGE_GOSRC")
runStrict(wd, []string{"sync"}) 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"}) // runStrict(wd, []string{"/home/jcarr/go/bin/go-clone", "--work"})
} }
@ -133,7 +133,7 @@ func installBinary(testDir string, gopath string) {
repo := repos.Next() repo := repos.Next()
log.Info("go.work repo (hopefully):", repo.GoPath, repo.FullPath, repo.RepoType()) 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) os.Exit(-1)
} }