Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 549102
Collapse All | Expand All

(-)files.orig/dot-bash_profile (-1 / +1 lines)
Lines 2-5 Link Here
2
2
3
# This file is sourced by bash for login shells.  The following line
3
# This file is sourced by bash for login shells.  The following line
4
# runs your .bashrc and is recommended by the bash info pages.
4
# runs your .bashrc and is recommended by the bash info pages.
5
[[ -f ~/.bashrc ]] && . ~/.bashrc
5
[ -f ~/.bashrc ] && . ~/.bashrc
(-)files.orig/dot-bashrc (-1 / +1 lines)
Lines 9-15 Link Here
9
# Test for an interactive shell.  There is no need to set anything
9
# Test for an interactive shell.  There is no need to set anything
10
# past this point for scp and rcp, and it's important to refrain from
10
# past this point for scp and rcp, and it's important to refrain from
11
# outputting anything in those cases.
11
# outputting anything in those cases.
12
if [[ $- != *i* ]] ; then
12
if [ -z "$PS1" ]; then
13
	# Shell is non-interactive.  Be done now!
13
	# Shell is non-interactive.  Be done now!
14
	return
14
	return
15
fi
15
fi

Return to bug 549102