Skip to content

Commit

Permalink
Fix golint module path
Browse files Browse the repository at this point in the history
golint package moved from github.com/golang/lint to golang.org/x/lint

golang/lint#446
https://github.com/golang/go/wiki/Resolving-Problems-From-Modified-Module-Path
  • Loading branch information
minamijoyo committed Apr 28, 2019
1 parent fd8decf commit 89365f9
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 61 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif
GOLINT := $(GOBIN)/golint
GORELEASER := $(GOBIN)/goreleaser

$(GOLINT): ; @go install github.com/golang/lint/golint
$(GOLINT): ; @go install golang.org/x/lint/golint
$(GORELEASER): ; @go install github.com/goreleaser/goreleaser

.DEFAULT_GOAL := build
Expand Down
86 changes: 41 additions & 45 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,52 @@ module github.com/minamijoyo/tfschema
go 1.12

require (
github.com/agext/levenshtein v1.2.1
github.com/apparentlymart/go-cidr v0.0.0-20170616213631-2bd8b58cf427
github.com/apparentlymart/go-textseg v0.0.0-20170531203952-b836f5c4d331
github.com/armon/go-radix v0.0.0-20170727155443-1fca145dffbc
github.com/aws/aws-sdk-go v1.15.0
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
github.com/bgentry/speakeasy v0.1.0
github.com/blang/semver v0.0.0-20170202183821-4a1e882c79dc
github.com/fatih/color v1.7.0
github.com/go-ini/ini v1.38.1
github.com/golang/protobuf v1.1.0
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce
github.com/hashicorp/go-cleanhttp v0.0.0-20171130225243-06c9ea3a335b
github.com/hashicorp/go-getter v0.0.0-20180327010114-90bb99a48d86
github.com/hashicorp/go-hclog v0.0.0-20170716174523-b4e5765d1e5f
github.com/hashicorp/go-multierror v0.0.0-20180717150148-3d5d8f294aa0
github.com/hashicorp/go-plugin v0.0.0-20180125190438-e53f54cbf51e
github.com/hashicorp/go-safetemp v0.0.0-20180326211150-b1a1dbde6fdc
github.com/hashicorp/go-uuid v0.0.0-20160120003506-36289988d83c
github.com/hashicorp/go-version v0.0.0-20171129150820-4fe82ae3040f
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f
github.com/hashicorp/hcl2 v0.0.0-20180308163058-5f8ed954abd8
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250
github.com/agext/levenshtein v1.2.1 // indirect
github.com/apparentlymart/go-cidr v0.0.0-20170616213631-2bd8b58cf427 // indirect
github.com/apparentlymart/go-textseg v0.0.0-20170531203952-b836f5c4d331 // indirect
github.com/armon/go-radix v0.0.0-20170727155443-1fca145dffbc // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/blang/semver v0.0.0-20170202183821-4a1e882c79dc // indirect
github.com/go-test/deep v1.0.1 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/goreleaser/goreleaser v0.106.0
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect
github.com/hashicorp/go-cleanhttp v0.0.0-20171130225243-06c9ea3a335b // indirect
github.com/hashicorp/go-getter v0.0.0-20180327010114-90bb99a48d86 // indirect
github.com/hashicorp/go-hclog v0.0.0-20170716174523-b4e5765d1e5f // indirect
github.com/hashicorp/go-multierror v0.0.0-20180717150148-3d5d8f294aa0 // indirect
github.com/hashicorp/go-plugin v0.0.0-20180125190438-e53f54cbf51e // indirect
github.com/hashicorp/go-safetemp v0.0.0-20180326211150-b1a1dbde6fdc // indirect
github.com/hashicorp/go-uuid v0.0.0-20160120003506-36289988d83c // indirect
github.com/hashicorp/go-version v0.0.0-20171129150820-4fe82ae3040f // indirect
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f // indirect
github.com/hashicorp/hcl2 v0.0.0-20180308163058-5f8ed954abd8 // indirect
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250 // indirect
github.com/hashicorp/logutils v0.0.0-20150609070431-0dc08b1671f3
github.com/hashicorp/terraform v0.11.7
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8
github.com/kardianos/osext v0.0.0-20170510131534-ae77be60afb1
github.com/mattn/go-colorable v0.0.9
github.com/mattn/go-isatty v0.0.3
github.com/mattn/go-runewidth v0.0.2
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
github.com/kardianos/osext v0.0.0-20170510131534-ae77be60afb1 // indirect
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
github.com/mattn/go-runewidth v0.0.2 // indirect
github.com/mitchellh/cli v0.0.0-20180414170447-c48282d14eba
github.com/mitchellh/copystructure v0.0.0-20170525013902-d23ffcb85de3
github.com/mitchellh/go-homedir v0.0.0-20180523094522-3864e76763d9
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7
github.com/mitchellh/hashstructure v0.0.0-20160209213820-6b17d669fac5
github.com/mitchellh/mapstructure v0.0.0-20170307201123-53818660ed49
github.com/mitchellh/copystructure v0.0.0-20170525013902-d23ffcb85de3 // indirect
github.com/mitchellh/go-homedir v1.0.0
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
github.com/mitchellh/hashstructure v0.0.0-20160209213820-6b17d669fac5 // indirect
github.com/mitchellh/mapstructure v0.0.0-20170307201123-53818660ed49 // indirect
github.com/mitchellh/panicwrap v0.0.0-20170106182340-fce601fe5557
github.com/mitchellh/reflectwalk v0.0.0-20170726202117-63d60e9d0dbc
github.com/oklog/run v1.0.0
github.com/mitchellh/reflectwalk v0.0.0-20170726202117-63d60e9d0dbc // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/olekukonko/tablewriter v0.0.0-20180506121414-d4647c9c7a84
github.com/pkg/browser v0.0.0-20170505125900-c90ca0c84f15
github.com/posener/complete v1.1.1
github.com/ulikunitz/xz v0.5.4
github.com/zclconf/go-cty v0.0.0-20180718220526-02bd58e97b57
golang.org/x/crypto v0.0.0-20170209233901-453249f01cfe
golang.org/x/net v0.0.0-20180724234803-3673e40ba225
golang.org/x/sys v0.0.0-20180724212812-e072cadbbdc8
golang.org/x/text v0.3.0
google.golang.org/genproto v0.0.0-20180726180014-2a72893556e4
google.golang.org/grpc v1.13.0
github.com/ulikunitz/xz v0.5.4 // indirect
github.com/zclconf/go-cty v0.0.0-20180718220526-02bd58e97b57 // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384 // indirect
google.golang.org/genproto v0.0.0-20180726180014-2a72893556e4 // indirect
google.golang.org/grpc v1.13.0 // indirect
)

0 comments on commit 89365f9

Please sign in to comment.