summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-07 21:16:50 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-07 21:16:50 +0100
commit2cea8517f3b6c7f72cdecbcd3e6745db29284852 (patch)
treeeca4a7ea369415c384e8b5373c08655cf74fc333
parent1b0afdcea226ebc4e5f46c50fc21aa835b52ada9 (diff)
init.sh: remove useless export
we already reset to n if not y, afterward just rely on that Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/init.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/init.sh b/include/init.sh
index e5e3f564..d2db0236 100644
--- a/include/init.sh
+++ b/include/init.sh
@@ -139,7 +139,6 @@ xbmk_set_env()
# if "y": a coreboot target won't be built if target.cfg says release="n"
# (this is used to exclude certain build targets from releases)
[ -z "${XBMK_RELEASE+x}" ] && export XBMK_RELEASE="n"
- [ "$XBMK_RELEASE" = "N" ] && export XBMK_RELEASE="n"
[ "$XBMK_RELEASE" = "Y" ] && export XBMK_RELEASE="y"
[ "$XBMK_RELEASE" = "y" ] || export XBMK_RELEASE="n"