summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-09-24 17:18:28 -0700
committerElliott Hughes <enh@google.com>2015-09-25 08:11:32 -0700
commit91528bac8419fbb01c898a091220bdedc3c93944 (patch)
tree163b09e15b4e8bb167c251c8cc647dd2cd02201f
parente006687723356e6f848dc982c922b99fcb55999a (diff)
downloadmksh-91528bac8419fbb01c898a091220bdedc3c93944.tar.gz
Remove auto addition of ~/bin subdirectories to the path.
Change-Id: Icde133fb21fa93ba3909b40da62da81654be1bab
-rw-r--r--mkshrc9
1 files changed, 0 insertions, 9 deletions
diff --git a/mkshrc b/mkshrc
index 510fdb7..731ee9a 100644
--- a/mkshrc
+++ b/mkshrc
@@ -59,12 +59,3 @@ function hd {
function setenv {
eval export "\"$1\""'="$2"'
}
-
-for p in ~/bin; do
- [[ -d $p/. ]] || continue
- [[ :$PATH: = *:$p:* ]] || PATH=$p:$PATH
-done
-
-unset p
-
-: place customisations above this line