Change Makefile to look for godep in GOPATH instead of using a relative path

This commit is contained in:
hmhealey
2015-07-06 17:31:58 -04:00
parent 3dec509899
commit 48538d82bc

View File

@@ -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; \