Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
d22a4cfa7058b224e37dbf07aa7cd3c583fdd188
/
.
/
plugins
/
available
/
latex.plugin.bash
blob: 9559255699ea46b3a12faecbb7533f38d95af361 [
file
] [
log
] [
blame
]
#!/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
unset MACTEX_PATH