Skip to content

Commit

Permalink
Update install.sh: fix tmp dir
Browse files Browse the repository at this point in the history
  • Loading branch information
e-marchand authored Jul 27, 2023
1 parent a5d155d commit b18cf25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ root=$(pwd)

TMP="${TMPDIR}"
if [ "x$TMP" = "x" ]; then
TMP="/tmp/"
TMP="/tmp"
fi
TMP="${TMP}$package.$$"
TMP="${TMP}/$package.$$"
rm -rf "$TMP" || true
mkdir "$TMP"
if [ $? -ne 0 ]; then
Expand Down

0 comments on commit b18cf25

Please sign in to comment.