Merge pull request #139 from hmhealey/makefilegodeps

Change Makefile to look for godep in GOPATH instead of using a relative path
This commit is contained in:
Joram Wilander
2015-07-07 15:04:21 -04:00

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