*** empty log message ***

This commit is contained in:
2006-12-24 16:07:13 +00:00
parent 3628069938
commit c929b2ca09
3 changed files with 302 additions and 26 deletions

View File

@ -55,7 +55,13 @@ run_test()
echo "###################################"
echo "PROBLEM(S) DETECTED IN $script.".
echo "###################################"
return 1
echo "Do you want to abort? [y/n]"
read ans
if [ "$ans" = "y" -o "$ans" = "Y" ]
then
return 1
fi
fi
done
@ -67,7 +73,13 @@ run_test()
echo "###################################"
echo "PROBLEM(S) DETECTED IN $script.".
echo "###################################"
return 1
echo "Do you want to abort? [y/n]"
read ans
if [ "$ans" = "y" -o "$ans" = "Y" ]
then
return 1
fi
fi
done