Browse Source

Do quick build even on test failure

Jakob Borg 12 years ago
parent
commit
48603a1619
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.sh

+ 1 - 1
build.sh

@@ -4,7 +4,7 @@ version=$(git describe --always)
 buildDir=dist
 
 if [[ -z $1 ]] ; then
-	go test ./... || exit 1
+	go test ./...
 	go build -ldflags "-X main.Version $version" \
 	&& nrsc syncthing gui
 else