Skip to content

Commit

Permalink
Handle command line parameter "-? -h --help" and any other.
Browse files Browse the repository at this point in the history
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Parmeshwr Prasad <[email protected]>
Reviewed-by: Gao, Liming <[email protected]>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15192 6f19259b-4bc3-4df7-8a09-765794883524
  • Loading branch information
parmeshwr authored and lgao4 committed Jan 28, 2014
1 parent 71c49ea commit 729220e
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions edksetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,45 @@
# Please reference edk2 user manual for more detail descriptions at https://edk2.tianocore.org/files/documents/64/494/EDKII_UserManual.pdf
#

function HelpMsg()
{
echo Please note: This script must be \'sourced\' so the environment can be changed.
echo ". edksetup.sh"
echo "source edksetup.sh"
}

function SetupEnv()
{
if [ -z "$WORKSPACE" ]
then
. BaseTools/BuildEnv $*
else
. $WORKSPACE/BaseTools/BuildEnv $*
fi
}

function SourceEnv()
{
if [ \
"$1" = "-?" -o \
"$1" = "-h" -o \
"$1" = "--help" \
]
then
echo BaseTools Usage: \'. edksetup.sh\'
echo
echo Please note: This script must be \'sourced\' so the environment can be changed.
echo \(Either \'. edksetup.sh\' or \'source edksetup.sh\'\)
HelpMsg
return
fi

if [ -z "$WORKSPACE" ]
then
. BaseTools/BuildEnv $*
else
. $WORKSPACE/BaseTools/BuildEnv $*
SetupEnv "$*"
fi

}
if [ $# -gt 1 ]
then
HelpMsg
return
elif [ $# -eq 1 ] && [ "$1" != "BaseTool" ]
then
HelpMsg
return
fi
SourceEnv "$*"

0 comments on commit 729220e

Please sign in to comment.