diff options
author | Leah Rowe <leah@libreboot.org> | 2024-04-27 22:42:12 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-04-27 22:42:12 +0100 |
commit | 714d4b3ed3aba68421128f4558f6a493c96a014a (patch) | |
tree | 1fb578f203f23125bfe1f6b785eeb6bbf2817a55 | |
parent | e614f90638ffda7dd9cd2634d856aa40e96d2010 (diff) |
update/release: disable status checking
just to ensure that nothing goes wrong. we don't rely on
the status variable for releases, because there is another
variable, release, that target.cfg files declare, e.g.
release="n"
release="y"
you can just omit the variable, because it defaults to y, so
you only need declare it when it needs to be "n"
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/update/release | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/update/release b/script/update/release index e8eff300..d7b7d108 100755 --- a/script/update/release +++ b/script/update/release @@ -10,6 +10,7 @@ set -u -e eval "$(setvars "" vdir relname src_dirname srcdir _xm target romdir mode)" export LBMK_RELEASE="y" +export LBMK_STATUS="n" main() { |