diff options
author | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-07-23 03:17:09 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-07-23 03:17:09 +0000 |
commit | c6a7fef8eacb0e8c035097a532e7d7864e0b997c (patch) | |
tree | a53dbae3a1c0d6c9ee44f5c8866b16721f038100 /ShellPkg | |
parent | e4d7370d18f01ca5081e283c9c993075f5eed197 (diff) | |
download | edk2-platforms-c6a7fef8eacb0e8c035097a532e7d7864e0b997c.tar.xz |
Add logic to check the execution break flag before executing the next command in a script file.
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Jaben carsey <Jaben.carsey@intel.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13547 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Application/Shell/Shell.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ShellPkg/Application/Shell/Shell.c b/ShellPkg/Application/Shell/Shell.c index 35ffae8e9c..182f896dbb 100644 --- a/ShellPkg/Application/Shell/Shell.c +++ b/ShellPkg/Application/Shell/Shell.c @@ -1874,6 +1874,9 @@ RunScriptFileHandle ( Status = EFI_SUCCESS;
break;
}
+ if (ShellGetExecutionBreakFlag()) {
+ break;
+ }
if (EFI_ERROR(Status)) {
break;
}
|