diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-04 03:05:23 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-04 03:05:23 +0100 |
commit | 0a74cc8ec6038492f64074e18cc10ba7ab31ac94 (patch) | |
tree | 9e36fbc0d874c8e0aa25aab32799830d88bdac3b /include/tree.sh | |
parent | a09ec1d02b275fa0d79a0a21be77d450fd86318b (diff) |
xbmk: clean up a few err calls
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/tree.sh')
-rw-r--r-- | include/tree.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/tree.sh b/include/tree.sh index 229c6508..98442e5c 100644 --- a/include/tree.sh +++ b/include/tree.sh @@ -372,8 +372,7 @@ project_up_to_date() x_ mkdir -p "$XBMK_CACHE/$hashdir" if [ -f "$XBMK_CACHE/$hashdir/$project$hashname" ]; then - read -r old_hash < \ - "$XBMK_CACHE/$hashdir/$project$hashname" \ + read -r old_hash < "$XBMK_CACHE/$hashdir/$project$hashname" \ || err \ "$hashdir: err '$XBMK_CACHE/$hashdir/$project$hashname'" \ "project_up_to_date" "$hashdir" "$hashname" "$badhashvar" \ |