diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:20:18 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:20:18 +0100 |
commit | 44fb9873639301988b2a99e246243a83cc4fe1e2 (patch) | |
tree | 6a43631c46ad83f896cb399c12c785ca0bf258c0 | |
parent | fac74cd60a3d90e6e0df971b481a55b0a01050c4 (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>
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |