signal.Ignore(signalsToIgnore...)
const version = "v0.0.0-20250520201116-40659211760d"
- cmd := exec.Command("go", "run", "golang.org/x/pkgsite/cmd/internal/doc@"+version,
+ docatversion := "golang.org/x/pkgsite/cmd/internal/doc@" + version
+ // First download the module and then try to run with GOPROXY=off to circumvent
+ // the deprecation check. This will allow the pkgsite command to run if it's
+ // in the module cache but there's no network.
+ if _, err := runCmd(nil, "go", "mod", "download", docatversion); err != nil {
+ return err
+ }
+ cmd := exec.Command("go", "run", docatversion,
"-gorepo", buildCtx.GOROOT,
"-http", addr,
"-open", path)
+ cmd.Env = append(os.Environ(), "GOPROXY=off")
cmd.Stdout = os.Stderr
cmd.Stderr = os.Stderr
}
rootMod := qrs[0].Mod
deprecation, err := modload.CheckDeprecation(ctx, rootMod)
- if err != nil {
+ if err != nil && !errors.Is(err, fs.ErrNotExist) {
return nil, fmt.Errorf("%s: %w", args[0], err)
}
if deprecation != "" {