Add ./build.sh clean

This commit is contained in:
Jakob Borg 2014-08-11 11:54:48 +02:00
parent a418771c04
commit ab952e6103
1 changed files with 4 additions and 0 deletions

View File

@ -126,6 +126,10 @@ case "$1" in
godep go install $* -ldflags "$ldflags" ./cmd/...
;;
clean)
rm -rf bin Godeps/_workspace/pkg $GOPATH/pkg/*/github.com/syncthing
;;
race)
build -race
;;