edksetup.sh: Code style

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15199 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Jordan Justen 2014-01-30 19:26:46 +00:00 committed by jljusten
parent 8d25bed4bd
commit ef9086c3a5
1 changed files with 15 additions and 13 deletions

View File

@ -44,19 +44,20 @@ function SetupEnv()
function SourceEnv()
{
if [ \
"$1" = "-?" -o \
"$1" = "-h" -o \
"$1" = "--help" \
]
then
HelpMsg
return
else
SetupEnv "$*"
fi
if [ \
"$1" = "-?" -o \
"$1" = "-h" -o \
"$1" = "--help" \
]
then
HelpMsg
return
else
SetupEnv "$*"
fi
}
if [ $# -gt 1 ]
if [ $# -gt 1 ]
then
HelpMsg
return
@ -64,6 +65,7 @@ elif [ $# -eq 1 ] && [ "$1" != "BaseTool" ]
then
HelpMsg
return
fi
fi
SourceEnv "$*"