Commit 37ec248
authored
Commit #5526 bumped github.com/atterpac/refresh to v1.0.0 in v3/go.mod
but left v3/go.sum with only the v0.8.6 checksums. Any build that runs
with -mod=readonly (e.g. `task install` -> `go install ./cmd/wails3`,
the "Build Wails3 CLI" CI step) therefore fails with:
internal/commands/watcher.go:6:2: missing go.sum entry for module
providing package github.com/atterpac/refresh/engine
This breaks the template-build matrix on every open PR. The Go test
jobs masked it because `task test:examples` runs `go mod tidy` first.
`go mod tidy` regenerates the missing refresh v1.0.0 checksums and
propagates the indirect bump of lmittmann/tint v1.0.3 -> v1.1.3 that
refresh v1.0.0's go.mod requires (a refresh-only patch would next fail
on a missing tint checksum).
1 parent aa31c67 commit 37ec248
2 files changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
65 | | - | |
| 64 | + | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
259 | | - | |
260 | | - | |
| 259 | + | |
| 260 | + | |
261 | 261 | | |
262 | 262 | | |
263 | 263 | | |
| |||
0 commit comments