summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-26 15:06:18 -0500
committerGitHub <noreply@github.com>2017-10-26 15:06:18 -0500
commit827fbfa87dcc1996a93f640e7599592036827fd4 (patch)
treea9ae91e32bb042c57d0b2746c5b2885643e27c02 /Makefile
parent7ed011745a544873f40f806f1803cb8a4998ba01 (diff)
downloadchat-827fbfa87dcc1996a93f640e7599592036827fd4.tar.gz
chat-827fbfa87dcc1996a93f640e7599592036827fd4.tar.bz2
chat-827fbfa87dcc1996a93f640e7599592036827fd4.zip
more robust mockery invocation (#7727)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0bd8c090e..60ca5b23c 100644
--- a/Makefile
+++ b/Makefile
@@ -273,7 +273,7 @@ gofmt:
store-mocks:
go get github.com/vektra/mockery/...
- mockery -dir store -all -output store/storetest/mocks -note 'Regenerate this file using `make store-mocks`.'
+ $(shell go env GOPATH)/bin/mockery -dir store -all -output store/storetest/mocks -note 'Regenerate this file using `make store-mocks`.'
check-licenses:
./scripts/license-check.sh $(TE_PACKAGES) $(EE_PACKAGES)