diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-09-02 17:33:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-09-02 17:33:48 +0300 |
commit | 7fb72b2ebf041b4068174f034b0922c6232b303f (patch) | |
tree | 7a664672a2d0df0bc8b16966bc5434d24fac8a99 /%HOME% | |
parent | .bashrc: set +o histexpand (diff) | |
download | linux-home-7fb72b2ebf041b4068174f034b0922c6232b303f.tar.gz linux-home-7fb72b2ebf041b4068174f034b0922c6232b303f.zip |
.bashrc: don't export SHELLOPTS, BASHOPTS
Diffstat (limited to '%HOME%')
-rw-r--r-- | %HOME%/.bashrc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 942f878..233c4e9 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -6,9 +6,9 @@ esac export PS1="\[\e[1;32m\]\h\[\e[m\] \[\e[1;34m\]\W\[\e[m\] # \[$(tput sgr0)\]" set +o histexpand -# `echo "!)"` doesn't work otherwise (inc. third-party scripts). +# `echo "!)"` doesn't work otherwise (namely, in third-party scripts). #set -o nounset -# Too many scripts stop working w/ nounset enabled :-( +# Too many third-party scripts stop working w/ nounset enabled :-( set -o pipefail shopt -s checkwinsize @@ -57,8 +57,10 @@ export PYTHONSTARTUP="$HOME/.pythonrc" os_is_cygwin && set -o igncr os_is_cygwin || complete -r -export SHELLOPTS -export BASHOPTS +# I'm sick and tired of third-party scripts breaking b/c of a random shell +# option I use (configure scripts in particular), so I'm commenting this out. +#export SHELLOPTS +#export BASHOPTS if os_is_cygwin; then alias mingcc32='i686-w64-mingw32-gcc' |