mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-26 22:09:03 +02:00
include/err.sh this new handling also does mundane things, such as tell you what script b0rked Signed-off-by: Leah Rowe <leah@libreboot.org>
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
# Copyright (c) 2022, 2023 Leah Rowe <info@minifree.org>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
err()
|
|
{
|
|
printf "ERROR %s: %s\n" "${0}" "${1}" 1>&2
|
|
exit 1
|
|
}
|