From 7a7a971e7bf45505c27554a249e5be3a0f6bedd0 Mon Sep 17 00:00:00 2001 From: Philip Norman Date: Wed, 18 Jul 2018 17:52:13 -0700 Subject: [PATCH] Add go get to make install step Without the `go get ./...` step, a newly configured environment does not automatically import the ffjson and uuid libraries, causing `make install` to fail due to missing depencies. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8b3497cb..cc9dedbc 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,7 @@ all: test .PHONY: install install: INSTALL_FLAGS += install: + go get ./... go install $(INSTALL_FLAGS) $(BINARIES) .PHONY: test