should err on lack of vet/fmt now
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Jeffrey Paul 2020-09-08 21:32:16 -07:00
parent f6ee57d25c
commit 1b15abb7f7
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
sco sco
.DS_Store

View File

@ -44,7 +44,7 @@ go-get:
vet: vet:
go vet ./... go vet ./...
bash -c 'test -z "$$(gofmt .)"' bash -c 'test -z "$$(gofmt -l .)"'
./$(FN): */*.go cmd/*/*.go go-get vet ./$(FN): */*.go cmd/*/*.go go-get vet
cd cmd/$(FN) && go build -o ../../$(FN) $(GOFLAGS) . cd cmd/$(FN) && go build -o ../../$(FN) $(GOFLAGS) .

View File

@ -8,6 +8,7 @@ import (
var Version string var Version string
var Commit string var Commit string
var Buildarch string var Buildarch string
func main() { func main() {