Spit out error if given -d without argument.

Bug #74067
This commit is contained in:
seawood%netscape.com 2001-10-23 06:25:59 +00:00
Родитель f2dd5922e1
Коммит 144d900287
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -290,7 +290,12 @@ do
;;
-d | --debugger)
moz_debugger=$2;
shift 2
if [ "${moz_debugger}" != "" ]; then
shift 2
else
echo "-d requires an argument"
exit 1
fi
;;
*)
break;