summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-27 03:20:18 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-27 03:20:18 +0100
commit44fb9873639301988b2a99e246243a83cc4fe1e2 (patch)
tree6a43631c46ad83f896cb399c12c785ca0bf258c0 /build
parentfac74cd60a3d90e6e0df971b481a55b0a01050c4 (diff)
build: don't rm TMPDIR if it's /tmp
we override TMPDIR, setting it to /tmp/xbmk*C if it's just set to tmp, that means we didn't set it properly, which is a bug. this patch protects against deletion of /tmp under such a fault condition, if it were ever to occur in the future. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index 6eae3aac..383e83cb 100755
--- a/build
+++ b/build
@@ -132,7 +132,7 @@ fail()
tmp_cleanup()
{
[ "$xbmk_parent" = "y" ] || return 0
- rm -Rf "$TMPDIR" || return 1
+ [ "$TMPDIR" = "/tmp" ] || rm -Rf "$TMPDIR" || return 1
rm -f lock || return 1
}