diff --git a/Makefile b/Makefile index 4952ef9..fc5418f 100644 --- a/Makefile +++ b/Makefile @@ -29,12 +29,13 @@ install: $(BINARIES): $(SOURCES) - $(GO) build -o $@ ./cmd/$@ + $(GO) build -i -o $@ ./cmd/$@ .PHONY: test test: - $(GO) get -t . +# $(GO) get -t . + $(GO) test -i -v . $(GO) test -v .