summaryrefslogtreecommitdiffstats
path: root/mkinitcpio
diff options
context:
space:
mode:
Diffstat (limited to 'mkinitcpio')
-rwxr-xr-xmkinitcpio9
1 files changed, 6 insertions, 3 deletions
diff --git a/mkinitcpio b/mkinitcpio
index 677f608..a865770 100755
--- a/mkinitcpio
+++ b/mkinitcpio
@@ -335,9 +335,8 @@ for var in cfg_{MODULES,BINARIES,FILES}; do
done
parse_hook
-# unset errtrace and trap
-set +E
-trap ERR
+# reset the trap to catch all errors
+trap '(( ++builderrors ))' ERR
if (( ${#ADDED_MODULES[*]} )); then
mkdir -p "${MODPATHS[@]%/*}"
@@ -358,6 +357,10 @@ else
warning "No modules were added to the image. This is probably not what you want."
fi
+# unset errtrace and trap
+set +E
+trap ERR
+
declare -i status=0
declare -a pipesave
if [[ "${GENIMG}" ]]; then