Add dependency update command to Makefile
This commit is contained in:
parent
4f50039c8c
commit
f681b83ee7
1 changed files with 9 additions and 0 deletions
9
Makefile
9
Makefile
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue