Browse Source

Don't fail build on 'go vet' errors (ref #227)

Jakob Borg 11 years ago
parent
commit
e788a99c3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.sh

+ 1 - 1
build.sh

@@ -20,7 +20,7 @@ check() {
 build() {
 	check
 
-	go vet ./... || exit 1
+	go vet ./...
 
 	godep go build $* -ldflags "$ldflags" ./cmd/syncthing
 }