Remove exit from batch file

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7879 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2009-03-15 11:49:12 +00:00
parent 0306d9a9c5
commit 49794755ba
5 changed files with 10 additions and 10 deletions

View File

@@ -17,7 +17,6 @@ if [ \
then
echo Error! Please specific the architecture.
echo Usage: "./PostBuild.sh [IA32|X64]"
exit 1
fi
case "$1" in
@@ -29,7 +28,6 @@ case "$1" in
;;
*)
echo Invalid Architecture string, should be only IA32 or X64
exit 1
esac
#
@@ -74,4 +72,3 @@ then
echo Done!
fi
exit 0