Add the no sensors test.
This commit is contained in:
Executable
+11
@@ -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
|
||||
Reference in New Issue
Block a user