Moved go vet after tests have run, removed some @s

pull/13/head
Chris Bednarski 9 years ago
parent 1b1671fca6
commit d658a40fea

@ -6,12 +6,12 @@ deps:
@go get github.com/codegangsta/cli
build: deps
@go build -o hostess cmd/hostess/main.go
go build -o hostess cmd/hostess/main.go
test:
@go vet
@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
gox:
@go get github.com/mitchellh/gox

Loading…
Cancel
Save