From 505e30d20d8e7b626b26f94a66e6c43743c719de Mon Sep 17 00:00:00 2001 From: fengzhiqiang Date: Tue, 8 Jan 2019 11:26:33 +0800 Subject: [PATCH] add vendor action --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e47e69e..2c51b3d 100644 --- a/Makefile +++ b/Makefile @@ -30,4 +30,10 @@ docker: run: @echo ".:: starting server ::." @echo " bootstrap servers : $(RUN_ARGS)" - @go run serv.go -addr :9000 --bootstrap-servers $(RUN_ARGS) \ No newline at end of file + @go run serv.go -addr :9000 --bootstrap-servers $(RUN_ARGS) + +vendor: + @echo ".:: update submodule ::." + @git submodule init + @git submodule update + @dep update \ No newline at end of file