package forgepb import ( "errors" "fmt" "os" "path/filepath" ) // very much a hack job func (f *Forge) MakeGoWork() error { if f.IsGoWork() { // a go.work file was found } else { // you can use a go.work file in ~/go/src , but you probably shouldn't unless something // has gone terribly wrong return errors.New("if you want a go.work file in ~/go/src/, touch it first") } filename := filepath.Join(f.GetGoSrc(), "go.work") workf, err := os.OpenFile(filename, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644) if err != nil { return err } defer workf.Close() fmt.Fprintln(workf, "go 1.20") // fix this fmt.Fprintln(workf, "") fmt.Fprintln(workf, "use (") all := f.Repos.SortByGoPath() for all.Scan() { repo := all.Next() /* if !repo.IsGoLang() == "" { // skip repos that aren't go // todo: handle non-flat repos? log.Info("skip non-go", repo.GoPath) continue } */ fmt.Fprintln(workf, "\t"+repo.GoPath) /* if repo.pb.Exists("go.mod") { // log.Info("ADDING REPO", goSrcDir, repo.GoPath) } else { fmt.Fprintln(workf, "\t"+repo.GoPath) log.Log(REPO, "missing go.mod for", repo.GoPath) } */ } fmt.Fprintln(workf, ")") return nil }