add support for mactex if its present

This commit is contained in:
Travis Swicegood
2011-03-31 17:01:33 -05:00
parent b2857a3774
commit 97e73f44dc

View File

@@ -0,0 +1,7 @@
#!/bin/bash
# add mactex to the path if its present
MACTEX_PATH=/usr/local/texlive/2009/bin/universal-darwin
if [[ -d $MACTEX_PATH ]]; then
export PATH=$PATH:$MACTEX_PATH
fi