From a7f6f2073c8d60b433775c6f4462f58d28ae8d25 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 21 Oct 2011 15:14:40 -0400 Subject: Some systems *cough*CentOS6*cough* want you to add $HOME/bin to $PATH in your .profile/.bash_profile, not /etc/profile. --- .profile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.profile b/.profile index 36a3ec5..4bf1916 100644 --- a/.profile +++ b/.profile @@ -9,6 +9,10 @@ umask 022 # set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ]; then + export PATH="$HOME/bin:$PATH" +fi + if [ -d "$HOME/.prefix/bin" ]; then export PATH="$HOME/.prefix/bin:$PATH" fi -- cgit v1.2.3