674cd7e05c
I keep forgetting how best to do this. NOTRY=true NOTREECHECKS=true Review URL: https://codereview.chromium.org/880283002
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
VERSION=`cat $(dirname $0)/../SKP_VERSION`
|
|
gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps .
|