mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 19:19:28 +00:00
13 lines
178 B
Text
13 lines
178 B
Text
|
#!/bin/bash
|
||
|
set +e
|
||
|
|
||
|
case "$(uname -s)" in
|
||
|
Darwin)
|
||
|
_recipe brew
|
||
|
brew cask install mactex
|
||
|
;;
|
||
|
*)
|
||
|
_recipe _apt
|
||
|
_apt texlive-full
|
||
|
esac
|