diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:18:23 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:18:23 +0100 |
commit | fac74cd60a3d90e6e0df971b481a55b0a01050c4 (patch) | |
tree | 55903b0d83895d9592a93ffb7bdf42d8fb7ffe92 /build | |
parent | 671893a802cb9f7b684037062d0debd1c049addb (diff) |
lib.sh: simplified TMPDIR handling
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-x | build | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -125,16 +125,16 @@ fetch_trees() fail() { - tmp_cleanup || printf "WARNING: can't rm tmpfiles: %s\n" "$tmpdir" 1>&2 + tmp_cleanup || printf "WARNING: can't rm tmpfiles: %s\n" "$TMPDIR" 1>&2 err_ "${1}" } tmp_cleanup() { - [ "$tmpdir_was_set" = "n" ] || return 0 - rm -Rf "$tmpdir" || return 1 + [ "$xbmk_parent" = "y" ] || return 0 + rm -Rf "$TMPDIR" || return 1 rm -f lock || return 1 } main $@ -tmp_cleanup || err_ "can't rm tmpdir upon non-zero exit: $tmpdir" +tmp_cleanup || err_ "can't rm TMPDIR upon non-zero exit: $TMPDIR" |