1
0
Fork 0

zprofile: Use non-random static TMPDIR

Closes #1319
pull/1332/head
Alexander Neumann 8 years ago committed by Kaleb Elwert
parent 14670f40f0
commit 5bcc223e95

@ -65,9 +65,14 @@ fi
# #
# Temporary Files # Temporary Files
# #
#
if [[ -z "$TMPDIR" ]]; then
export TMPDIR="/tmp/zsh-$UID"
fi
if [[ ! -d "$TMPDIR" ]]; then if [[ ! -d "$TMPDIR" ]]; then
export TMPDIR="$(mktemp -d)" mkdir "$TMPDIR"
chmod 700 "$TMPDIR"
fi fi
TMPPREFIX="${TMPDIR%/}/zsh" TMPPREFIX="${TMPDIR%/}/zsh"

Loading…
Cancel
Save