Rewrite && and || into if/then/else syntax which fixes some bugs.

This commit is contained in:
Slawomir Wojciech Wojtczak (vermaden) 2012-05-05 08:21:06 +02:00
parent 8c2047d87f
commit 2e65b56a44
1 changed files with 1 additions and 1 deletions

2
beadm
View File

@ -157,7 +157,7 @@ case ${1} in
(create) # ------------------------------------------------------------------ (create) # ------------------------------------------------------------------
case ${#} in case ${#} in
(4) (4)
if [ ${2} = "-e" ] if ! [ ${2} = "-e" ]
then then
__usage __usage
fi fi