diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-10-17 18:57:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-17 18:57:15 -0400 |
commit | db895040ddae323058ef8ae617a17d8095a7a8a2 (patch) | |
tree | 0e24c291c5f531d287098043a0400c2d66699739 /Makefile | |
parent | 4a57c9ea17a86e579751025cd0a7c2e6de374726 (diff) | |
download | gitea-db895040ddae323058ef8ae617a17d8095a7a8a2.tar.gz gitea-db895040ddae323058ef8ae617a17d8095a7a8a2.zip |
Use go1.16+ way of installing binaries (#17342)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -279,7 +279,7 @@ swagger-validate: .PHONY: errcheck errcheck: @hash errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/kisielk/errcheck; \ + $(GO) install github.com/kisielk/errcheck@8ddee489636a8311a376fc92e27a6a13c6658344; \ fi @echo "Running errcheck..." @errcheck $(GO_PACKAGES) @@ -287,14 +287,14 @@ errcheck: .PHONY: revive revive: @hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/mgechev/revive; \ + $(GO) install github.com/mgechev/revive@v1.1.2; \ fi @revive -config .revive.toml -exclude=./vendor/... ./... .PHONY: misspell-check misspell-check: @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/client9/misspell/cmd/misspell; \ + $(GO) install github.com/client9/misspell/cmd/misspell@v0.3.4; \ fi @echo "Running misspell-check..." @misspell -error -i unknwon $(GO_SOURCES_OWN) @@ -302,7 +302,7 @@ misspell-check: .PHONY: misspell misspell: @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/client9/misspell/cmd/misspell; \ + $(GO) install github.com/client9/misspell/cmd/misspell@v0.3.4; \ fi @echo "Running go misspell..." @misspell -w -i unknwon $(GO_SOURCES_OWN) @@ -350,7 +350,7 @@ watch-frontend: node-check node_modules .PHONY: watch-backend watch-backend: go-check @hash air > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/cosmtrek/air; \ + $(GO) install github.com/cosmtrek/air@bedc18201271882c2be66d216d0e1a275b526ec4; \ fi air -c .air.conf @@ -661,7 +661,7 @@ release-check: | $(DIST_DIRS) .PHONY: release-compress release-compress: | $(DIST_DIRS) @hash gxz > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - GO111MODULE=off $(GO) get -u github.com/ulikunitz/xz/cmd/gxz; \ + $(GO) install github.com/ulikunitz/xz/cmd/gxz@v0.5.10; \ fi cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && gxz -k -9 $${file}; done; |