diff options
author | June McEnroe <june@causal.agency> | 2019-11-27 20:35:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-27 20:35:26 -0500 |
commit | c74783b0eb6d113779c72cc4b929cf2c7b19b994 (patch) | |
tree | 0da3f58e9fe38eee9048e197f5b023e10dd32517 | |
parent | Rename bin.7 to README.7 (diff) | |
download | src-c74783b0eb6d113779c72cc4b929cf2c7b19b994.tar.gz src-c74783b0eb6d113779c72cc4b929cf2c7b19b994.zip |
Clear PATH before populating it again
Oops, this got lost.
Diffstat (limited to '')
-rw-r--r-- | home/.profile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/home/.profile b/home/.profile index c2e14ba0..6309b091 100644 --- a/home/.profile +++ b/home/.profile @@ -1,4 +1,5 @@ _PATH=$PATH +PATH= for prefix in '' /usr/local /usr/pkg /usr /opt/pkg ~/.local; do PATH=${PATH}${PATH:+:}${prefix}/sbin:${prefix}/bin done |