We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16563b6 commit a468961Copy full SHA for a468961
internal/builder/main.go
@@ -130,7 +130,7 @@ func GetModules(cfg Config) error {
130
retries := 3
131
failReason := "unknown"
132
for i := 1; i <= retries; i++ {
133
- cmd := exec.Command(goBinary, "mod", "tidy")
+ cmd := exec.Command(goBinary, "mod", "download", "all")
134
cmd.Dir = cfg.Distribution.OutputPath
135
if out, err := cmd.CombinedOutput(); err != nil {
136
failReason = fmt.Sprintf("%s. Output: %q", err, out)
0 commit comments