From 22a89ccf8a77a6abd2a303f435d9e82da25e8cc7 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Thu, 5 Sep 2019 17:19:50 +0200 Subject: [PATCH] fix comment typo --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 6060fbd72..42a986dab 100644 --- a/Makefile +++ b/Makefile @@ -45,10 +45,10 @@ install-build-deps: ## Install dependencies for bin build @go get github.com/mitchellh/gox install-gen-deps: ## Install dependencies for code generation - # to avoid having to tidy our go deps, it we `go get` our binaries from a - # temp dir. `go get` will change our deps and the following deps are not - # part of out code dependencies; so a go mod tidy will remove them again. - # `go install` seems install the last tagged version and we want to install + # to avoid having to tidy our go deps, we `go get` our binaries from a temp + # dir. `go get` will change our deps and the following deps are not part of + # out code dependencies; so a go mod tidy will remove them again. `go + # install` seems to install the last tagged version and we want to install # master. @(cd $(TEMPDIR) && go get golang.org/x/tools/cmd/goimports) @(cd $(TEMPDIR) && GO111MODULE=on go get github.com/mna/pigeon@master)