fix comment typo

This commit is contained in:
Adrien Delorme 2019-09-05 17:19:50 +02:00
parent 592ff6993a
commit 22a89ccf8a
1 changed files with 4 additions and 4 deletions

View File

@ -45,10 +45,10 @@ install-build-deps: ## Install dependencies for bin build
@go get github.com/mitchellh/gox @go get github.com/mitchellh/gox
install-gen-deps: ## Install dependencies for code generation install-gen-deps: ## Install dependencies for code generation
# to avoid having to tidy our go deps, it we `go get` our binaries from a # to avoid having to tidy our go deps, we `go get` our binaries from a temp
# temp dir. `go get` will change our deps and the following deps are not # dir. `go get` will change our deps and the following deps are not part of
# part of out code dependencies; so a go mod tidy will remove them again. # out code dependencies; so a go mod tidy will remove them again. `go
# `go install` seems install the last tagged version and we want to install # install` seems to install the last tagged version and we want to install
# master. # master.
@(cd $(TEMPDIR) && go get golang.org/x/tools/cmd/goimports) @(cd $(TEMPDIR) && go get golang.org/x/tools/cmd/goimports)
@(cd $(TEMPDIR) && GO111MODULE=on go get github.com/mna/pigeon@master) @(cd $(TEMPDIR) && GO111MODULE=on go get github.com/mna/pigeon@master)