mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 11:09:29 +00:00
[provisioning] Skip texlive install if available
This commit is contained in:
parent
59c525064d
commit
6c5eeafa15
1 changed files with 6 additions and 2 deletions
|
@ -9,8 +9,12 @@ case "$(uname -s)" in
|
|||
;;
|
||||
*)
|
||||
_recipe _apt
|
||||
_ppa jonathonf/texlive
|
||||
_apt texlive-full
|
||||
# Install texlive if it isn't already available (e.g. a local or
|
||||
# portable installation).
|
||||
if ! command -v tlmgr >/dev/null; then
|
||||
_ppa jonathonf/texlive
|
||||
_apt texlive-full
|
||||
fi
|
||||
# xzdec is required by tlmgr
|
||||
_apt xzdec
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue