You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
329 B
12 lines
329 B
#!/bin/sh
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
|
# If you are having trouble, please refer to the instructions at:
|
|
# https://sites.google.com/a/google.com/skia/key-resources/skps
|
|
|
|
set -x
|
|
set -e
|
|
|
|
DOWNLOAD_SCRIPT=$(cd $(dirname $0)/..; pwd)/infra/bots/assets/skp/download.py
|
|
python ${DOWNLOAD_SCRIPT} -t $(pwd)/skps
|