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 | 00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932 (patch) | |
tree | a4193796a13da76679bd875a77a2f2e9f8b23001 /home | |
parent | Use MacPorts rather than pkgsrc (diff) | |
download | src-00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932.tar.gz src-00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932.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 |