Do quick build even on test failure

This commit is contained in:
Jakob Borg 2014-01-06 15:50:15 +01:00
parent 17d5f2bbfc
commit 48603a1619
1 changed files with 1 additions and 1 deletions

View File

@ -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