keep at go1.20 for now

This commit is contained in:
Jeff Carr 2024-12-07 16:49:20 -06:00
parent 2d22e4132d
commit 8127ad9a9e
1 changed files with 1 additions and 2 deletions

View File

@ -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 (")