mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-23 19:19:50 +00:00
13 lines
207 B
Bash
13 lines
207 B
Bash
#!/bin/bash
|
|
# Description: Document typesetting
|
|
set -e
|
|
|
|
case "$(uname -s)" in
|
|
Darwin)
|
|
_recipe brew
|
|
_brew_cask mactex
|
|
;;
|
|
*)
|
|
_recipe _apt
|
|
_apt texlive-full
|
|
esac
|