7 lines
109 B
Text
Executable file
7 lines
109 B
Text
Executable file
if [ -x './build.py' ] ; then
|
|
./build.py
|
|
elif [ -x './build.sh' ] ; then
|
|
./build.sh
|
|
else
|
|
exit
|
|
fi
|