Added error message

This commit is contained in:
Laurent Saboret 2006-03-28 10:05:35 +00:00
parent 65de099a11
commit d5f6332ecf
1 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,10 @@
# Find executable name (different on Windows and Unix)
[ -f ./release/polyhedron_ex_parameterization.exe ] && PARAM_APPLICATION="./release/polyhedron_ex_parameterization.exe"
[ -x ./polyhedron_ex_parameterization ] && PARAM_APPLICATION="./polyhedron_ex_parameterization"
if [[ ! -f $PARAM_APPLICATION ]] ; then
echo "Cannot find polyhedron_ex_parameterization application"
exit 1;
fi
# Find source file in data or data/extras folders
[ -f data/extras/"$5".off ] && SOURCE_FILE="data/extras/"$5".off"