sysprog-basic/build.sh
2023-10-27 10:57:47 +02:00

10 lines
126 B
Bash
Executable file

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