Skip to content

Commit

Permalink
run-tests: use go mod tidy
Browse files Browse the repository at this point in the history
Use go mod tidy instead of go mod download in run-tests. The latter
changes go.sum for some reason.

See golang/go#43994
  • Loading branch information
lmb committed Mar 10, 2021
1 parent 63d3d6f commit 26ae354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fetch() {

# Pull all dependencies, so that we can run tests without the
# vm having network access.
go mod download
go mod tidy

# Use sudo if /dev/kvm isn't accessible by the current user.
sudo=""
Expand Down

0 comments on commit 26ae354

Please sign in to comment.