diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-12 15:36:53 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-12 15:36:53 +0300 |
| commit | 4bc2494fa2ed576e2e656402567df0f10c38460f (patch) | |
| tree | 5618d7322b49c207fdad11fb6930835d864b18ca /bin | |
| parent | d5a58a1115bb3faa45caefeb053a5808406afa35 (diff) | |
Make run_action status-safe for bm0
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/shuriken | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/shuriken b/bin/shuriken index 3c815ed..ff6173f 100755 --- a/bin/shuriken +++ b/bin/shuriken @@ -3413,8 +3413,7 @@ run_action() { fi ;; --clean|--generate|--refresh-splash|--sync|--dry-run|--print-config) - SHURIKEN_ACTION_BODY_RUNNER=run_action_body_direct \ - run_configured_action + run_configured_action status=$? if (( status != 0 )); then return "$status" @@ -3449,7 +3448,7 @@ main() { return "$status" fi - run_action + SHURIKEN_ACTION_BODY_RUNNER=run_action_body_direct run_action status=$? if (( status != 0 )); then return "$status" |
