ossp-pkg/shtool/sh.common 1.20 -> 1.21
--- sh.common 2003/02/11 12:56:39 1.20
+++ sh.common 2003/08/13 14:20:34 1.21
@@ -101,8 +101,8 @@
# determine whether option needs an argument
eval "opt_MODE=\$opt_MODE_${opt_OPT}"
- if [ ".$opt_ARG" = . -a ".$opt_ARG_OK" != .yes ]; then
- if [ ".$opt_MODE" = ".:" -o ".$opt_MODE" = ".+" ]; then
+ if [ ".$opt_ARG" = . ] && [ ".$opt_ARG_OK" != .yes ]; then
+ if [ ".$opt_MODE" = ".:" ] || [ ".$opt_MODE" = ".+" ]; then
opt_PREV="$opt_OPT"
continue
fi
|
|