From 4885c7962d493087ab916e59040b134b8d2fabf7 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 2 Sep 2023 10:22:39 +0100 Subject: handle TMPDIR from include/export.sh it looks a bit cluttered just sitting there in the main script. make it an include. Signed-off-by: Leah Rowe --- include/export.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 include/export.sh (limited to 'include/export.sh') diff --git a/include/export.sh b/include/export.sh new file mode 100755 index 00000000..9e393485 --- /dev/null +++ b/include/export.sh @@ -0,0 +1,22 @@ +# Copyright (c) 2023 Leah Rowe +# SPDX-License-Identifier: MIT + +tmpdir="" +tmpdir_was_set="y" +set | grep TMPDIR 1>/dev/null 2>/dev/null || tmpdir_was_set="n" +if [ "${tmpdir_was_set}" = "y" ]; then + tmpdir="${TMPDIR##*/}" + tmpdir="${TMPDIR%_*}" + if [ "${tmpdir}" = "lbmk" ]; then + tmpdir="" + tmpdir_was_set="n" + fi +fi +if [ "${tmpdir_was_set}" = "n" ]; then + export TMPDIR="/tmp" + tmpdir="$(mktemp -d -t lbmk_XXXXXXXX)" + export TMPDIR="${tmpdir}" +else + export TMPDIR="${TMPDIR}" +fi +tmpdir="${TMPDIR}" -- cgit v1.2.1