summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordann frazier <dann.frazier@canonical.com>2019-05-06 13:30:17 -0600
committerdann frazier <dann.frazier@canonical.com>2019-05-06 13:30:17 -0600
commitcdceb0fb38a5e4a0617986127e2520a8f49cebbd (patch)
tree7ae12a95acc5ac54b884275b4319de7c757ad49b
parent55d55457824dfb74aa05f346600396152aa22d4a (diff)
downloadefi-boot-shim-cdceb0fb38a5e4a0617986127e2520a8f49cebbd.tar.gz
efi-boot-shim-cdceb0fb38a5e4a0617986127e2520a8f49cebbd.zip
'set -e' the code that generates the dbx list
Without this we would silently ignore an efisiglist command error.
-rwxr-xr-xdebian/rules1
1 files changed, 1 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
index cd126aca..ba63dfb7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,6 +45,7 @@ COMMON_OPTIONS += \
$(DBX_LIST):
if [ -f ${DBX_HASHES} ]; then \
+ set -e; \
for HASH in $$(grep -E [[:xdigit:]]{32} ${DBX_HASHES}); do \
efisiglist -o ${DBX_LIST} -a -h $$HASH; \
done; \