1
0
mirror of https://github.com/golang/go synced 2024-09-24 09:20:15 -06:00

dashboard: auto-update builder.sh.

avoid possibility of busy loop pounding on dashboard.

R=agl1
CC=golang-dev
https://golang.org/cl/206051
This commit is contained in:
Russ Cox 2010-02-09 13:45:38 -08:00
parent c465331262
commit c7d37e41b2
2 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,9 @@ fi
if [ ! -d $GOROOT ]; then
mkdir -p $GOROOT
hg clone https://go.googlecode.com/hg/ $GOROOT
else
cd $GOROOT
hg pull -u || exit 1
fi
mkdir -p $GOROOT/bin

View File

@ -74,4 +74,5 @@ while true ; do
fi
fi
cd ../.. || fatal "Cannot cd up"
sleep 10
done