diff --git a/.gitignore b/.gitignore index f47ed53..e0e37da 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ *~ /bin/ /pkg/tmp/ +/vendor !.git* diff --git a/Makefile b/Makefile index 063c6f8..ae34959 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,8 @@ IMAGE=docker-registry.bestbytes.net/contentserver all: build test tag: echo $(TAG) +dep: + go mod download && go mod vendor && go install -i ./vendor/... clean: rm -fv bin/contentserve* build: clean