Added some dots to the makefile so everything runs with vet and test and such

pull/13/head
Chris Bednarski 9 years ago
parent b9a25f7aaf
commit 4203437444

@ -3,15 +3,15 @@ all: build test
deps: deps:
go get github.com/golang/lint/golint go get github.com/golang/lint/golint
go get github.com/stretchr/testify/assert go get github.com/stretchr/testify/assert
go get go get -u ./...
build: deps build: deps
go build cmd/hostess/hostess.go go build cmd/hostess/hostess.go
test: test:
go test -coverprofile=coverage.out; go tool cover -html=coverage.out -o coverage.html go test -coverprofile=coverage.out; go tool cover -html=coverage.out -o coverage.html
go vet go vet ./...
golint golint ./...
gox: gox:
go get github.com/mitchellh/gox go get github.com/mitchellh/gox

Loading…
Cancel
Save