2022-07-10 15:48:46 +01:00

12 lines
221 B
Bash
Executable File

#!/bin/bash
set -eiu -o pipefail
DEST=/volumes/CIRCUITPY
# DEST=dummy
LIBRARY_SRC=libs/circuitpython-bundle-7-mpy/lib
mkdir -p "${DEST}/lib"
for ITEM in "$@"; do
rsync -rv "${LIBRARY_SRC}/${ITEM}" "${DEST}/lib/"
done