4db65d4d39
Change-Id: I77f78e7b27963a087ace30b8ce41118dd76c9026 Reviewed-on: https://skia-review.googlesource.com/150914 Reviewed-by: Hal Canary <halcanary@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Brian Salomon <bsalomon@google.com>
10 lines
199 B
Bash
Executable File
10 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copies the latest bot-generated SVG set to ./svgs.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
DOWNLOAD_SCRIPT=$(cd $(dirname $0)/..; pwd)/infra/bots/assets/svg/download.py
|
|
python ${DOWNLOAD_SCRIPT} -t $(pwd)/svgs
|