2015-01-28 17:39:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
2018-01-04 16:43:54 +00:00
|
|
|
# If you are having trouble, please refer to the instructions at:
|
|
|
|
# https://sites.google.com/a/google.com/skia/key-resources/skps
|
2015-01-28 17:39:10 +00:00
|
|
|
|
|
|
|
set -x
|
|
|
|
set -e
|
|
|
|
|
2016-07-22 15:31:07 +00:00
|
|
|
DOWNLOAD_SCRIPT=$(cd $(dirname $0)/..; pwd)/infra/bots/assets/skp/download.py
|
|
|
|
python ${DOWNLOAD_SCRIPT} -t $(pwd)/skps
|