9 lines
199 B
Bash
Executable file
9 lines
199 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
DOWNLOAD_SCRIPT=$(cd $(dirname $0)/..; pwd)/infra/bots/assets/skp/download.py
|
|
python ${DOWNLOAD_SCRIPT} -t $(pwd)/skps
|