From 3d9c9f5821dd00cc9db36a4428b623dc10cb8b03 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 30 Nov 2017 10:18:39 -0700 Subject: attempt to fix .profile --- .profile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) mode change 100644 => 100755 .profile (limited to '.profile') diff --git a/.profile b/.profile old mode 100644 new mode 100755 index c716395c..10fbc75e --- a/.profile +++ b/.profile @@ -2,10 +2,12 @@ # --- $PATH -if [ -d ~/local/bin ] ; then - PATH=~/local/bin:"${PATH}" +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" + export PATH fi -if [ -d ~/bin ] ; then - PATH=~/bin:"${PATH}" +if [ -d "$HOME/local/bin" ] ; then + PATH="$HOME/local/bin:$PATH" + export PATH fi -- cgit v1.2.3