.zshrc: Remove Tomcat 7 from PATH

This commit is contained in:
Alan Orth 2018-01-12 06:10:50 +02:00
parent 506fb61f9d
commit 906da0cdbd
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -43,7 +43,7 @@ if [[ "$OSTYPE" =~ ^darwin.*$ ]]; then
# See: https://tug.org/mactex/morepackages.html
[[ -d /usr/local/texlive/2016basic/bin/x86_64-darwin ]] && PATH=$PATH:/usr/local/texlive/2016basic/bin/x86_64-darwin
PATH="/usr/local/opt/postgresql@9.5/bin:/usr/local/opt/tomcat@7/bin:$PATH"
PATH="/usr/local/opt/postgresql@9.5/bin:$PATH"
elif [[ "$OSTYPE" =~ ^linux.*$ ]]; then
# noop
fi