Browse Source

fix PATH for initial basictex setup

Kyle P Davis 8 years ago
parent
commit
890dc375b1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gimmes/basictex

+ 2 - 2
gimmes/basictex

@@ -3,9 +3,9 @@ set -o errexit -o pipefail
 if ! has tlmgr; then
 	if [[ "$OS" = "Darwin" ]]; then
 		brew cask install basictex
+		export PATH="$PATH:/Library/TeX/texbin"
 		sudo tlmgr update --self
-		sudo tlmgr install titling
-		sudo tlmgr install framed
+		sudo tlmgr install titling framed
 	else
 		echo "TODO: add BasicTex for Linux!"
 	fi