diff --git a/Makefile b/Makefile index 23290d3..fcb085e 100644 --- a/Makefile +++ b/Makefile @@ -30,10 +30,6 @@ help: clean: @rm -rf bin build cover *.out -veryclean: clean - rm -rf tmp - find vendor/* -maxdepth 0 -ignore_readdir_race -type d -exec rm -rf {} \; - ## prefix before other make targets to run in your local dev environment local: | quiet @$(eval DOCKRUN= ) @@ -75,7 +71,7 @@ install: build # Each of the fetch should be an entry within vendor.json; not currently included within project .PHONY: vendor vendor: tmp/dev_image_id - ${DOCKRUN} bash ./scripts/vendor.sh + ${DOCKRUN} govendor sync @chmod 664 vendor/vendor.json # ---------------------------------------------- diff --git a/scripts/vendor.sh b/scripts/vendor.sh deleted file mode 100755 index e36e746..0000000 --- a/scripts/vendor.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -set -e - -govendor fetch github.com/op/go-logging -govendor fetch github.com/spf13/cobra -govendor fetch gopkg.in/yaml.v2 -govendor fetch github.com/imdario/mergo -govendor sync