summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-07 16:49:20 -0600
committerJeff Carr <[email protected]>2024-12-07 16:49:20 -0600
commit8127ad9a9e0ffb496f00301d80021ae98eb29e13 (patch)
tree59e94518dc7e005cdd7aab72721980c2a0894763
parent2d22e4132d9ef50527b1e8efa9951748ff78e189 (diff)
keep at go1.20 for nowv0.22.33
-rw-r--r--common.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/common.go b/common.go
index b5ec143..fdc9bc0 100644
--- a/common.go
+++ b/common.go
@@ -170,7 +170,6 @@ func (rr *RepoRow) MakeRedoMod() error {
return err
}
-// very much a hack job
func (rl *RepoList) MakeGoWork() error {
goSrcDir := os.Getenv("REPO_WORK_PATH")
filename := filepath.Join(goSrcDir, "go.work")
@@ -181,7 +180,7 @@ func (rl *RepoList) MakeGoWork() error {
}
defer f.Close()
- fmt.Fprintln(f, "go 1.21.4") // fix this
+ fmt.Fprintln(f, "go 1.20") // fix this
fmt.Fprintln(f, "")
fmt.Fprintln(f, "use (")