Merge pull request #1944 from lemmi/bash

bash: bashrc: bail out in non-interactive shell
This commit is contained in:
Juan RP 2015-07-02 08:02:09 +02:00
commit 95753fbd12
2 changed files with 6 additions and 1 deletions

View file

@ -3,6 +3,11 @@
# Do not edit this file.
# Place your readable configs in /etc/bash/bashrc.d/*.sh
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
if [ -d /etc/bash/bashrc.d/ ]; then
for f in /etc/bash/bashrc.d/*.sh; do
[ -r "$f" ] && . "$f"

View file

@ -3,7 +3,7 @@ pkgname=bash
_bash_distver=4.3
_bash_patchlevel=039
version=${_bash_distver}.${_bash_patchlevel}
revision=4
revision=5
wrksrc=${pkgname}-${_bash_distver}
build_pie=yes
build_style=gnu-configure