summaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
Diffstat (limited to '.profile')
-rwxr-xr-x[-rw-r--r--].profile10
1 files changed, 6 insertions, 4 deletions
diff --git a/.profile b/.profile
index c716395c..10fbc75e 100644..100755
--- 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