From c9bbbc8f4825f8e3ab3727e01c5bf27c9b0dadda Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Fri, 17 Nov 2017 22:58:56 -0800 Subject: [PATCH] Add `make get` --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 8ad6b9c..6452c5f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ FMTFLAGS = -l -w -s +GETFLAGS = -u BUILD_DIR = build WATCHER_FILES = $(wildcard cmd/watcher/*.go) @@ -21,6 +22,15 @@ watcher: $(WATCHER) webapp: $(WEBAPP) +get: + go get $(GETFLAGS) github.com/kcotugno/tacitus + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/interval + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/watcher + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/webapp + go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax + go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax/websocket + go get $(GETFLAGS) github.com/kcotugno/tacitus/postgres + fmt: $(TACITUS_FILES) $(OSUTIL_FILES) $(POSTGRES_FILES) $(OPS_FILES) \ $(GDAX_FILES) $(GDAX_WEBSOCKET_FILES) $(HTTP_FILES) gofmt $(FMTFLAGS) $(TACITUS_FILES)