mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
[11939] Make binary_extracting scripts compatible to bourne shell. Thanks to nighoo for pointing
Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
parent
95ce0c927c
commit
fe3f4a43ee
3 changed files with 18 additions and 18 deletions
|
|
@ -54,11 +54,11 @@ badParam()
|
|||
echo
|
||||
}
|
||||
|
||||
if [ "$#" == "3" ]
|
||||
if [ "$#" = "3" ]
|
||||
then
|
||||
LOG_FILE=$2
|
||||
DETAIL_LOG_FILE=$3
|
||||
elif [ "$#" == "2" ]
|
||||
elif [ "$#" = "2" ]
|
||||
then
|
||||
LOG_FILE=$2
|
||||
fi
|
||||
|
|
@ -84,7 +84,7 @@ createMMaps()
|
|||
do
|
||||
for j in $EXCLUDE_MAPS
|
||||
do
|
||||
if [ "$i" == "$j" ]
|
||||
if [ "$i" = "$j" ]
|
||||
then
|
||||
continue 2
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue