Skip to content

Commit

Permalink
fix(Makefile): use $$ to represent $ for shell command (#196)
Browse files Browse the repository at this point in the history
Signed-off-by: Triple-Z <me@triplez.cn>
  • Loading branch information
Triple-Z committed May 25, 2022
1 parent 2be17a9 commit 5d9b7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ lint: $(GOLANGCI_LINT)
@$(GOLANGCI_LINT) run

$(GOLANGCI_LINT):
curl -sSfL https://github.com/raw/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
curl -sSfL https://github.com/raw/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin

mockgen-install:
go install github.com/golang/mock/mockgen@v1.6.0
Expand Down

0 comments on commit 5d9b7a2

Please sign in to comment.