xbmk: general cleanup: unroll condensed code lines

i overlooked a number of lines, during previous cleanup

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-10-04 02:43:24 +01:00
parent e1c70f4319
commit 0605fbe720
10 changed files with 118 additions and 41 deletions
+7 -2
View File
@@ -58,7 +58,9 @@ inject()
check_release
if check_target; then
patch_release || return 0
if ! patch_release; then
return 0
fi
fi
if [ "$xchanged" = "y" ]; then
remktar
@@ -141,6 +143,7 @@ patch_release()
if e "$tmpromdir/$_hashes" f; then
has_hashes="y"
hashfile="$_hashes"
break
fi
done
@@ -159,7 +162,9 @@ readkconfig()
fx_ scankconfig x_ find "$boarddir/config" -type f
eval "`setcfg "$xbtmp/cbcfg" 1`"
setvfile "$@" || return 1; :
if ! setvfile "$@"; then
return 1
fi
}
scankconfig()