12 lines
329 B
Plaintext
12 lines
329 B
Plaintext
|
#!/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
|