From 4203437444996e8d63026ebad013cd696962cf10 Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Fri, 5 Jun 2015 22:36:55 -0700 Subject: [PATCH] Added some dots to the makefile so everything runs with vet and test and such --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5dc6e31..218d8f2 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,15 @@ all: build test deps: go get github.com/golang/lint/golint go get github.com/stretchr/testify/assert - go get + go get -u ./... build: deps go build cmd/hostess/hostess.go test: go test -coverprofile=coverage.out; go tool cover -html=coverage.out -o coverage.html - go vet - golint + go vet ./... + golint ./... gox: go get github.com/mitchellh/gox