X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=.shellrc;h=a908dd953ad50d9ff3c1d6104ecb1031af328cbe;hb=fe688bf52ea3449ad34c6cf99025458ab4edc8e2;hp=8adc256b252b15555dfcd0c60ababafd72511d6a;hpb=a0aaa6c174574ecee129c2cf4ff1acbc39fa00b8;p=dotfiles.git diff --git a/.shellrc b/.shellrc index 8adc256..a908dd9 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) @@ -284,6 +290,7 @@ if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then source /usr/local/bin/virtualenvwrapper_lazy.sh fi -if which pyenv >/dev/null 2>&1; then - eval "`pyenv init -`" -fi +#if which pyenv >/dev/null 2>&1; then +# eval "`pyenv init -`" +# eval "`pyenv virtualenv-init -`" +#fi