Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update go.sum after golang.org/x/sys update #68

Merged
merged 1 commit into from Nov 21, 2021

Commits on Oct 5, 2021

  1. Update go.sum after golang.org/x/sys update

    PR mattn#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 get -u && go mod tidy to update golang.org/x/sys
    and clean up go.sum.
    tklauser committed Oct 5, 2021
    Copy the full SHA
    689cfc2 View commit details
    Browse the repository at this point in the history