diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-18 10:11:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-18 10:11:32 +0100 |
commit | a212a5bec8c7cc95bc836695f8973c17cb30dba4 (patch) | |
tree | 7b68ece50d5fa1aac63a912685cdeafbc58a650d /blobutil | |
parent | e62215718ca4aa8df13c101690f58619e82b9b73 (diff) |
blobutil: exit 1 if a called script fails
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'blobutil')
-rwxr-xr-x | blobutil | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ main() exit 1 fi - ./${script_dir}/${mode} ${args} + ./${script_dir}/${mode} ${args} || exit 1 ./.gitcheck clean } |