You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 10, 2019. It is now read-only.
oddly, this is only not working on my linux server. it returns no errors on my mac. same version of go, and gometalinter is up to date.
here it is running on my ubuntu server with debug:
DEBUG: linting path .
DEBUG: linting with vet: go tool vet ./*.go (on .)
DEBUG: executing /usr/local/go/bin/go ["tool" "vet" "example_test.go" "handler.go" "handler_test.go"]
DEBUG: warning: go tool vet ./*.go returned exit status 1
DEBUG: vet hits 2: ^(?P<path>[^\s][^\r\n:]+?\.go):(?P<line>\d+):\s*(?P<message>.*)$
DEBUG: vet linter took 26.268912ms
example_test.go:20::error: ExampleHandle refers to unknown identifier: Handle (vet)
example_test.go:30::error: ExampleHandleFunc refers to unknown identifier: HandleFunc (vet)
DEBUG: total elapsed time 48.585695ms
and here it is on my mac:
DEBUG: linting path .
DEBUG: linting with vet: go tool vet ./*.go (on .)
DEBUG: executing /Users/shawn/go/bin/go ["tool" "vet" "example_test.go" "handler.go" "handler_test.go"]
DEBUG: vet hits 0: ^(?P<path>[^\s][^\r\n:]+?\.go):(?P<line>\d+):\s*(?P<message>.*)$
DEBUG: vet linter took 42.18335ms
DEBUG: total elapsed time 64.709808ms
oddly, this is only not working on my linux server. it returns no errors on my mac. same version of go, and gometalinter is up to date.
here it is running on my ubuntu server with debug:
and here it is on my mac:
the repo is https://github.com/gowww/compress
The text was updated successfully, but these errors were encountered: