1#!/bin/sh 2 3# Copies the latest bot-generated SKP set to ./skps. 4# If you are having trouble, please refer to the instructions at: 5# https://sites.google.com/a/google.com/skia/key-resources/skps 6 7set -x 8set -e 9 10ROOT_DIR="$(cd $(dirname $0)/..; pwd)" 11python3 ${ROOT_DIR}/bin/fetch-sk 12case "$(uname -s)" in 13 CYGWIN*) SK_EXE="sk.exe";; 14 MINGW*) SK_EXE="sk.exe";; 15 *) SK_EXE="sk";; 16esac 17${ROOT_DIR}/bin/${SK_EXE} asset download skp $(pwd)/skps 18