.zshrc: Add Tomcat 7 and PostgreSQL 9.5 to PATH

These are no longer the current versions in Homebrew so we need to add
them to the path manually.
This commit is contained in:
Alan Orth 2017-10-10 01:17:56 +03:00
parent 2abbe9f5d7
commit 090dc88d34
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 0 deletions

1
.zshrc
View File

@ -40,6 +40,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"
elif [[ "$OSTYPE" =~ ^linux.*$ ]]; then
# noop
fi