mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-02 01:39:25 +00:00
Avoid setting TMPDIR and make sure all modules handle that properly
Fixes #1206
This commit is contained in:
@ -61,16 +61,3 @@ export LESS='-F -g -i -M -R -S -w -X -z-4'
|
||||
if (( $#commands[(i)lesspipe(|.sh)] )); then
|
||||
export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
|
||||
fi
|
||||
|
||||
#
|
||||
# Temporary Files
|
||||
#
|
||||
#
|
||||
# Set TMPDIR if the variable is not set/empty or the directory doesn't exist
|
||||
if [[ -z "${TMPDIR}" ]]; then
|
||||
export TMPDIR="/tmp/zsh-${UID}"
|
||||
fi
|
||||
|
||||
if [[ ! -d "${TMPDIR}" ]]; then
|
||||
mkdir -m 700 "${TMPDIR}"
|
||||
fi
|
||||
|
@ -6,6 +6,6 @@
|
||||
#
|
||||
|
||||
# Ensure that a non-login, non-interactive shell has a defined environment.
|
||||
if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN || -z "${TMPDIR}" ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
|
||||
if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
|
||||
source "${ZDOTDIR:-$HOME}/.zprofile"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user