Add git and mercurial as dependencies

This commit is contained in:
Harshavardhana
2014-12-04 01:56:01 -08:00
parent 69ae3b3310
commit c3fca84f25
3 changed files with 51 additions and 2 deletions

View File

@@ -3,7 +3,10 @@ MAKE_OPTIONS := -s
all: getdeps cover install
getdeps:
checkdeps:
@./checkdeps.sh
getdeps: checkdeps
@go get github.com/tools/godep && echo "Installing godep"
@go get code.google.com/p/go.tools/cmd/cover && echo "Installing cover"