]> git.phdru.name Git - dotfiles.git/commitdiff
.shellrc: remove pip's tmp directory
authorOleg Broytman <phd@phdru.name>
Tue, 21 Jun 2016 22:45:20 +0000 (01:45 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 21 Jun 2016 22:45:20 +0000 (01:45 +0300)
.shellrc

index 8adc256b252b15555dfcd0c60ababafd72511d6a..5d0f85a0cff9842ab05186f1883243ff3de4648e 100644 (file)
--- 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)