ff889f1339
Change-Id: I53c02c12a327f6484f4e45777c0168065adfae75 Reviewed-on: https://skia-review.googlesource.com/91080 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Herb Derby <herb@google.com>
12 lines
329 B
Bash
Executable File
12 lines
329 B
Bash
Executable File
#!/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
|