diff options
author | Leah Rowe <leah@libreboot.org> | 2024-04-28 20:47:59 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-04-28 20:47:59 +0100 |
commit | 5003e02bb2cd7cededa85d13abbc7c6e720d7b56 (patch) | |
tree | 973400b771f81ff23efc406c5ad695da7d6013de /script/build | |
parent | dbe259ef6568a423354c37b7c2264bc9dcfd8d3d (diff) |
build/roms: if release, allow all non-broken roms
this includes untested roms
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build')
-rwxr-xr-x | script/build/roms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/build/roms b/script/build/roms index 1353ca18..b8aab271 100755 --- a/script/build/roms +++ b/script/build/roms @@ -176,7 +176,7 @@ skip_board() fi [ "$lbmk_release" = "y" ] && [ "$release" = "n" ] && return 0 - [ "$lbmk_release" = "y" ] && [ "$status" = "broken" ] && return 0 + [ "$lbmk_release" = "y" ] && [ "$status" != "broken" ] && return 1 [ "$lbmk_status" = "y" ] || return 1 [ "$status" = "stable" ] && return 1 |