diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-07 16:23:12 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-07 16:23:12 +0100 |
commit | 7f71328f0e214db25f5dcccea0dab32ea834fb13 (patch) | |
tree | 8456527756d6d69ecdad96f5e14927765c89a9f4 /include/lib.sh | |
parent | 394b4ea7a59e4392d39c6e8154b21ae91b26492e (diff) |
lib.sh: Remove useless command in err()
We don't need this, since we're exiting anyway.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r-- | include/lib.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index 274daf69..950a07c8 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -168,7 +168,6 @@ x_() err() { - set -u -e [ $# -lt 1 ] || printf "ERROR %s: %s\n" "$0" "$1" 1>&2 || : exit 1 } |