add support for mactex if its present

pull/46/head
Travis Swicegood 2011-03-31 17:01:33 -05:00
parent b2857a3774
commit 97e73f44dc
1 changed files with 7 additions and 0 deletions

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