Index: perf/server/setup/continue_install |
diff --git a/perf/server/setup/continue_install b/perf/server/setup/continue_install |
index 9934209a155345149637872f44e00d14770fab9b..42be09be8c882672174748416a2fa4954fc07a68 100644 |
--- a/perf/server/setup/continue_install |
+++ b/perf/server/setup/continue_install |
@@ -17,12 +17,18 @@ else |
fi |
-if [ -d buildbot]; then |
+if [ -d buildbot ]; then |
(cd buildbot && git pull); |
else |
git clone https://skia.googlesource.com/buildbot |
fi |
+if [ -d skia ]; then |
+ (cd skia && git pull); |
+else |
+ git clone https://skia.googlesource.com/skia |
+fi |
+ |
mkdir=$HOME/golib |
export GOROOT=$HOME/go |
export GOPATH=$HOME/golib |
@@ -30,4 +36,4 @@ export PATH=$PATH:$GOROOT/bin |
cd ~/buildbot/perf/server |
go get -d |
-go build perf.go |
+go build -o perf |