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