From 4d57fdd0028cc46bd7e27e7e3817f439e8827521 Mon Sep 17 00:00:00 2001 From: Piotr Roszatycki Date: Mon, 2 Oct 2023 20:45:44 +0200 Subject: [PATCH] Correct tmp download dir --- bin/install | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bin/install b/bin/install index 94e8d5a..353d834 100755 --- a/bin/install +++ b/bin/install @@ -17,11 +17,7 @@ install() { local tmp_download_dir - if [[ -z ${TMPDIR-} ]]; then - tmp_download_dir=$(mktemp -d) - else - tmp_download_dir=${TMPDIR%/} - fi + tmp_download_dir=$(mktemp -d -t asdf) local bin_install_path="${install_path}/bin"