diff options
author | Leah Rowe <leah@libreboot.org> | 2025-09-13 13:27:47 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-09-13 13:27:47 +0100 |
commit | 995963baf4267e2d6221a5efc210130cfb1c64b7 (patch) | |
tree | 0af89063cf01b59dba4e0968d7de19ca7644df72 /mk | |
parent | 7bed68f5b7096349bc8a6f48d2f4394db7a581af (diff) |
use the new functionality in err(), whereby a given
function name and arguments can be provided, for
debugging purposes.
something similar was already done in a few places,
and replaced with this unified functionality.
this patch will make xbmk much easier to debug, under
fault conditions.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'mk')
-rwxr-xr-x | mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ main() version) printf "%s\nWebsite: %s\n" "$relname" "$projectsite" ;; release|download|inject) $cmd "$@" ;; -*) return 1 ;; - *) err "bad command" ;; + *) err "bad command" main "$@" ;; esac set -u -e # some commands disable them. turn them on! } |