summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-07-06 17:31:58 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-07-06 17:31:58 -0400
commit48538d82bcdaddc682597529be4138cb37297a1b (patch)
tree1ab5fed787e668203302cd64cb9e706896c74980 /Makefile
parent3dec509899f60ca0d2eadfcc192ccc49969852ef (diff)
downloadchat-48538d82bcdaddc682597529be4138cb37297a1b.tar.gz
chat-48538d82bcdaddc682597529be4138cb37297a1b.tar.bz2
chat-48538d82bcdaddc682597529be4138cb37297a1b.zip
Change Makefile to look for godep in GOPATH instead of using a relative path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dacc1a19b..e59e03ee7 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,7 @@ install:
@if [ $(shell docker ps | grep -ci mattermost-mysql) -eq 0 ]; then \
echo restoring go libs using godep; \
- ../../../../bin/godep restore; \
+ $(GOPATH)/bin/godep restore; \
echo starting mattermost-mysql; \
docker run --name mattermost-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=mostest \
-e MYSQL_USER=mmuser -e MYSQL_PASSWORD=mostest -e MYSQL_DATABASE=mattermost_test -d mysql > /dev/null; \