Add dependency update command to Makefile

This commit is contained in:
Tobie Morgan Hitchcock 2016-10-16 11:43:45 +01:00
parent 4f50039c8c
commit f681b83ee7

View file

@ -41,6 +41,15 @@ convey:
@echo "Run 'go get -u -v github.com/smartystreets/goconvey'"
goconvey -packages 50 -port 5000 -poll 10m -excludedDirs 'build,dev,doc,gui,vendor'
# The `make deps` command ensures all
# 3rd party dependencies are downloaded
# and installed.
.PHONY: deps
deps:
glide cache-clear
glide update
# The `make test` command runs all
# tests, found within all sub-folders
# in the project folder.