Unset the MACTEXT_PATH var so it doesn't leak through to env
Thought this variable wasn't making it to the session, but it does even without the `export`. This corrects that by explicitly unsetting it before we continue.pull/46/head
parent
ad502d9483
commit
8392f29250
|
|
@ -5,3 +5,4 @@ MACTEX_PATH=/usr/local/texlive/2009/bin/universal-darwin
|
||||||
if [[ -d $MACTEX_PATH ]]; then
|
if [[ -d $MACTEX_PATH ]]; then
|
||||||
export PATH=$PATH:$MACTEX_PATH
|
export PATH=$PATH:$MACTEX_PATH
|
||||||
fi
|
fi
|
||||||
|
unset MACTEX_PATH
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue