diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-26 00:57:50 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-26 00:57:50 +0100 |
commit | 18dacd4c22b1dfe6ab985d76712dd8261f173ce4 (patch) | |
tree | 3f305d133ed678293a50687c30ca01557c0a2fde /include/tree.sh | |
parent | e981132c829dea9dd958ea174e35e15e122451d7 (diff) |
xbmk: rename xbmklocal/xbmktmp variables
shorten them
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/tree.sh')
-rw-r--r-- | include/tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tree.sh b/include/tree.sh index 8aaadd57..11607eed 100644 --- a/include/tree.sh +++ b/include/tree.sh @@ -58,7 +58,7 @@ trees() mkhelpercfg="$datadir/mkhelper.cfg" if e "$mkhelpercfg" f missing; then - mkhelpercfg="$xbmktmp/mkhelper.cfg" + mkhelpercfg="$xbtmp/mkhelper.cfg" x_ touch "$mkhelpercfg" fi @@ -181,9 +181,9 @@ check_project_hashes() fx_ "x_ sha512sum" find "$datadir" "$configdir/$tree" "$mdir" \ -type f -not -path "*/.git*/*" | awk '{print $1}' > \ - "$xbmktmp/project.hash" || err "!h $project $tree" + "$xbtmp/project.hash" || err "!h $project $tree" - pjhash="$(sha512sum "$xbmktmp/project.hash" | awk '{print $1}')" || : + pjhash="$(sha512sum "$xbtmp/project.hash" | awk '{print $1}')" || : [ "$pjhash" != "$old_pjhash" ] && badhash="y" [ -f "$XBMK_CACHE/hash/$project$tree" ] || badhash="y" |