build script

This commit is contained in:
Christoph J. Scherr 2023-10-27 10:57:47 +02:00
parent 6515ff4c97
commit f60d89f57b

10
build.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
set -e
if [ -z "$1" ]
then
echo "specify which directory to build and flash"
else
ls
cd $1
bash ./build.sh
fi