mirror of https://github.com/acidanthera/audk.git
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:
parent
8d25bed4bd
commit
ef9086c3a5
28
edksetup.sh
28
edksetup.sh
|
@ -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 "$*"
|
||||
|
||||
|
|
Loading…
Reference in New Issue