9 lines
137 B
Bash
Executable file
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
|