From de0590c6e29d16ee27005caa0bd6fc1289537127 Mon Sep 17 00:00:00 2001 From: lane-c-wagner Date: Sun, 7 Mar 2021 08:30:50 -0700 Subject: [PATCH 1/3] trigger --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbf08fc..78ce52c 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Submit an issue (above in the issues tab) ## Transient Dependencies -* [github.com/streadway/amqp](https://github.com/streadway/amqp) - and that's it. +My goal is to keep dependencies limited to 1, [github.com/streadway/amqp](https://github.com/streadway/amqp). ## 👏 Contributing From 1ff616bb86d49e25f48de24dbb31321ea932486b Mon Sep 17 00:00:00 2001 From: lane-c-wagner Date: Sun, 7 Mar 2021 08:36:37 -0700 Subject: [PATCH 2/3] staticcheck --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 929133a..5b562c6 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ lint: go list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status install-staticcheck: - cd /tmp && go get honnef.co/go/tools/cmd/staticcheck + cd /tmp && GOPROXY=on go get honnef.co/go/tools/cmd/staticcheck staticcheck: staticcheck -f stylish ./... From efaaaf725eec893d2651c3a90323d34d7d4c8e2d Mon Sep 17 00:00:00 2001 From: lane-c-wagner Date: Sun, 7 Mar 2021 09:00:35 -0700 Subject: [PATCH 3/3] unset goproxy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b562c6..cc9e68c 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ lint: go list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status install-staticcheck: - cd /tmp && GOPROXY=on go get honnef.co/go/tools/cmd/staticcheck + cd /tmp && GOPROXY="" go get honnef.co/go/tools/cmd/staticcheck staticcheck: staticcheck -f stylish ./...