summaryrefslogtreecommitdiff
path: root/src/lib/action.source.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-12 15:15:38 +0300
committerPaul Buetow <paul@buetow.org>2026-06-12 15:15:38 +0300
commit81a3be6379198c697de2f8639dcaa1cdc9d66a53 (patch)
tree603b8f4f51b025f268664008b2b208a292324c68 /src/lib/action.source.sh
parent6aa19aa81090898c942f44677867b1abcdb06589 (diff)
Fix remaining errexit masking for bm0
Diffstat (limited to 'src/lib/action.source.sh')
-rw-r--r--src/lib/action.source.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/action.source.sh b/src/lib/action.source.sh
index aba24a8..f3e92be 100644
--- a/src/lib/action.source.sh
+++ b/src/lib/action.source.sh
@@ -27,7 +27,7 @@ run_action_body() {
if [[ "$-" == *e* ]]; then
"$@"
else
- ( "$@" )
+ ( set -e; "$@" )
fi
}