mirror of https://github.com/acidanthera/audk.git
BaseTools/Capsule: Do not support -o with --dump-info
https://bugzilla.tianocore.org/show_bug.cgi?id=1025 Cc: Sean Brogan <sean.brogan@microsoft.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
4619b183f7
commit
f33d5d68ab
|
@ -339,6 +339,10 @@ if __name__ == '__main__':
|
|||
args.OpenSslOtherPublicCertFile = args.OpenSslOtherPublicCertFile.name
|
||||
args.OpenSslTrustedPublicCertFile = args.OpenSslTrustedPublicCertFile.name
|
||||
|
||||
if args.DumpInfo:
|
||||
if args.OutputFile is not None:
|
||||
parser.error ('the following option is not supported for dumpinfo operations: --output')
|
||||
|
||||
#
|
||||
# Read binary input file
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue