From e32d3bc0e0677792144eb905bbf53bac753dc92d Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 22 Jun 2016 01:45:20 +0300 Subject: [PATCH] .shellrc: remove pip's tmp directory --- .shellrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.shellrc b/.shellrc index 8adc256..5d0f85a 100644 --- a/.shellrc +++ b/.shellrc @@ -12,6 +12,9 @@ case $- in *) return;; esac +# Stop if non-interactive shell +# [ -z "$PS1" ] && return + # append to the history file, don't overwrite it shopt -s histappend @@ -119,7 +122,10 @@ case "$SHELL" in fi complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser - which pip >/dev/null 2>&1 && eval "`pip completion --bash`" + if which pip >/dev/null 2>&1; then + eval "`pip completion --bash`" + rm -rf /tmp/pip_build_"$USER" + fi ;; */ksh) -- 2.39.2