Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: perf/server/setup/continue_install

Issue 335183002: Fixing install and OAuth (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « perf/server/perf.go ('k') | perf/server/setup/perf_setup.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « perf/server/perf.go ('k') | perf/server/setup/perf_setup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698