Skip to content

Commit

Permalink
Update go.sum after golang.org/x/sys update
Browse files Browse the repository at this point in the history
PR #66 updated the golang.org/x/sys dependency in go.mod but didn't
update go.sum. This leads to the following error on running go.test.sh:

    go: golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c: missing go.sum entry; to add it:
    	go mod download golang.org/x/sys
    go: golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c: missing go.sum entry; to add it:
    	go mod download golang.org/x/sys

Fix this by running go mod download golang.org/x/sys && go mod tidy to
update and clean up go.sum.
  • Loading branch information
tklauser committed Sep 29, 2021
1 parent d423e9c commit bed7165
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go.sum
@@ -1,2 +1,2 @@
golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg=
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I=
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 comments on commit bed7165

Please sign in to comment.