diff options
author | June McEnroe <june@causal.agency> | 2020-09-11 20:50:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-09-11 20:52:42 -0400 |
commit | 8861587e1a21ef59bd63ceae5c2257bfa5cea870 (patch) | |
tree | d53833f880f6794f007ce5d57fe1d24e3896afc8 /home/.profile | |
parent | Use MacPorts rather than pkgsrc (diff) | |
download | src-8861587e1a21ef59bd63ceae5c2257bfa5cea870.tar.gz src-8861587e1a21ef59bd63ceae5c2257bfa5cea870.zip |
Remove NetBSD from install script
I never use it.
Diffstat (limited to '')
-rw-r--r-- | home/.profile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/home/.profile b/home/.profile index 53942ba3..ed6d9c67 100644 --- a/home/.profile +++ b/home/.profile @@ -1,6 +1,6 @@ _PATH=$PATH PATH= path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; } -for prefix in '' /usr/local /opt/local /usr/pkg /usr ~/.local; do +for prefix in '' /usr/local /opt/local /usr ~/.local; do path "${prefix}/sbin" path "${prefix}/bin" done @@ -15,7 +15,6 @@ export CLICOLOR=1 export GPG_TTY=$(tty) export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics' -type nvim >/dev/null 2>&1 || EDITOR=vim [ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O [ -d /usr/home ] && cd |