fixup! meta-secure-core: use bb.fatal instead of bb.build.FuncFailed

This commit is contained in:
Yi Zhao
2019-08-19 15:09:34 +08:00
committed by Jia Zhang
parent 1be79730bf
commit 729916e322

View File

@@ -220,7 +220,7 @@ def pem2der(input, output, d):
try:
result, _ = bb.process.run(cmd)
except bb.process.ExecutionError:
raise bb.fatal('Unable to convert %s to %s' % (input, output))
bb.fatal('Unable to convert %s to %s' % (input, output))
# Convert the certificate (PEM formatted) to ESL.
__pem2esl() {