-
-
Notifications
You must be signed in to change notification settings - Fork 108
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #68 +/- ##
=======================================
Coverage 44.00% 44.00%
=======================================
Files 3 3
Lines 75 75
=======================================
Hits 33 33
Misses 40 40
Partials 2 2 Continue to review full report at Codecov.
|
@mattn could you please take a look? |
Once go get -u again please. |
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/[email protected]: missing go.sum entry; to add it: go mod download golang.org/x/sys go: golang.org/x/[email protected]: 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.
Done and force pushed. |
@mattn friendly ping |
Thank you |
在mac电脑上使用go1.17 以及sys库会导致runtime SIGSEGV gout 会使用go-isatty判断终端, 该库直接依赖sys库, 导致gout间接依赖sys库 mattn/go-isatty#68 所以更新下
在mac电脑上使用go1.17 以及sys库会导致runtime SIGSEGV gout 会使用go-isatty判断终端, 该库直接依赖sys库, 导致gout间接依赖sys库 mattn/go-isatty#68 所以更新下
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:
Fix this by running go mod download golang.org/x/sys && go mod tidy to
update and clean up go.sum.