spcd/cmd/cd-build-project.sh
2024-03-25 21:52:21 +01:00

9 lines
137 B
Bash
Executable file

if [ -x './build.py' ] ; then
./build.py \
|| exit
elif [ -x './build.sh' ] ; then
./build.sh \
|| exit
else
exit
fi