Add the no sensors test.

This commit is contained in:
Danny Staple
2022-04-03 15:14:54 +01:00
parent 822f4fb249
commit 79e75b47b8
10 changed files with 355 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -eiu -o pipefail
DEST=/volumes/CIRCUITPY
# DEST=dummy
LIBRARY_SRC=libs/circuitpython-bundle-7/lib
mkdir -p "${DEST}/lib"
for ITEM in "$@"; do
rsync -rv "${LIBRARY_SRC}/${ITEM}" "${DEST}/lib/"
done