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

Side by Side Diff: bin/fetch-skps

Issue 1305143002: Add instructions to authenticate for fetch. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # Instructions for authenticating.
3 #
4 # Install the utilities you need:
5 # curl https://sdk.cloud.google.com | bash
6 #
7 # Authenticate
8 # gcloud auth login
9 #
10 # Follow instructions on web page.
11 #
12 # Set Project
13 # gcloud config set project google.com:skia-buildbots
2 14
3 # Copies the latest bot-generated SKP set to ./skps. 15 # Copies the latest bot-generated SKP set to ./skps.
4 16
5 set -x 17 set -x
6 set -e 18 set -e
7 19
8 VERSION=`cat $(dirname $0)/../SKP_VERSION` 20 VERSION=`cat $(dirname $0)/../SKP_VERSION`
9 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps . 21 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps .
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698