diff options
Diffstat (limited to 'UefiCpuPkg/ResetVector/Vtf0')
-rw-r--r-- | UefiCpuPkg/ResetVector/Vtf0/Build.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/UefiCpuPkg/ResetVector/Vtf0/Build.py b/UefiCpuPkg/ResetVector/Vtf0/Build.py index 55f4edd87b..b791d32762 100644 --- a/UefiCpuPkg/ResetVector/Vtf0/Build.py +++ b/UefiCpuPkg/ResetVector/Vtf0/Build.py @@ -32,9 +32,12 @@ for arch in ('ia32', 'x64'): '-o', output,
'Vtf0.nasmb',
)
+ print(f"Command : {' '.join(commandLine)}")
ret = RunCommand(commandLine)
+ if ret != 0:
+ print(f"something went wrong while executing {commandLine[-1]}")
+ sys.exit()
print('\tASM\t' + output)
- if ret != 0: sys.exit(ret)
commandLine = (
'python',
|