From: Simon Ruderich Date: Fri, 20 Feb 2015 09:40:37 +0000 (+0100) Subject: shell/env: don't check ownership for ~/.tmp and ~/tmp X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=4f7b2f8b413a236e0e310cfa8f4c7e05cca30ec8 shell/env: don't check ownership for ~/.tmp and ~/tmp If they are not owned by me, something has gone very wrong. Checking only for the sanity of ~/.tmp and ~/tmp is not enough, so just skip the check. --- diff --git a/shell/env b/shell/env index aa36c92..ff5e634 100644 --- a/shell/env +++ b/shell/env @@ -82,13 +82,13 @@ export LESS_TERMCAP_so LESS_TERMCAP_se # Use ~/.tmp as directory for temporary files if available to reduce security # problems on multi-user systems. -if test -O "$HOME/.tmp" && test -d "$HOME/.tmp"; then +if test -d "$HOME/.tmp"; then TMP="$HOME/.tmp" TEMP="$TMP" TMPDIR="$TMP" export TMP TEMP TMPDIR # Also try ~/tmp as fallback. -elif test -O "$HOME/tmp" && test -d "$HOME/tmp"; then +elif test -d "$HOME/tmp"; then TMP="$HOME/tmp" TEMP="$TMP" TMPDIR="$TMP"