rom.sh: simplify mkcoreboottar()

Signed-off-by: Leah Rowe <leah@libreboot.org>
25.06_branch
Leah Rowe 2025-05-25 05:03:03 +01:00
parent 0854e99cfe
commit 173f304fd7
1 changed files with 2 additions and 4 deletions

View File

@ -251,8 +251,6 @@ cbfs()
mkcoreboottar()
{
[ "$target" = "$tree" ] && return 0
[ "$XBMK_RELEASE" = "y" ] || return 0
[ "$release" != "n" ] || return 0
$dry mkrom_tarball "bin/$target"; :
[ "$target" != "$tree" ] && [ "$XBMK_RELEASE" = "y" ] && \
[ "$release" != "n" ] && $dry mkrom_tarball "bin/$target"; :
}