Skip to content

Commit bc2fd52

Browse files
committed
fix(contribs): tidy
1 parent 1aa069d commit bc2fd52

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

misc/mod_tidy.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ for modfile in $gomods; do
2626
dir=$(dirname "$modfile")
2727

2828
# Run go mod tidy in the directory
29-
(cd "$dir" && go mod tidy -v) || exit 1
29+
echo "Running \`go -C $dir mod tidy -v\`"
30+
go -C "$dir" mod tidy -v || exit 1
3031
done
3132

3233
# Optionally verify the sums

misc/stress-test/stress-test-many-posts/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.23.8
66

77
require (
88
connectrpc.com/connect v1.16.2
9-
github.com/gnolang/gnonative v1.8.2-0.20250407145431-4a9b0eea1a2c
9+
github.com/gnolang/gnonative v1.8.1
1010
)
1111

1212
require (
@@ -20,6 +20,7 @@ require (
2020
github.com/davecgh/go-spew v1.1.1 // indirect
2121
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
2222
github.com/gnolang/gno v0.1.2-0.20240826090356-651f5aac3706 // indirect
23+
github.com/gnolang/gnokey-mobile v0.0.0-20240903152400-9942eff89ef6 // indirect
2324
github.com/go-logr/logr v1.4.2 // indirect
2425
github.com/go-logr/stdr v1.2.2 // indirect
2526
github.com/golang/protobuf v1.5.4 // indirect

misc/stress-test/stress-test-many-posts/go.sum

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)