Skip to content

Commit

Permalink
8ff4214 means there could be a leftover folder ~/.TinyTeX, which shou…
Browse files Browse the repository at this point in the history
…ld also be removed when uninstalling TinyTeX

I was wrong here: https://yihui.org/tinytex/r/#comment-4803675790
  • Loading branch information
yihui committed Feb 21, 2020
1 parent e0827f4 commit fe0eb01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: tinytex
Type: Package
Title: Helper Functions to Install and Maintain 'TeX Live', and Compile 'LaTeX' Documents
Version: 0.19.2
Version: 0.19.3
Authors@R: c(
person("Yihui", "Xie", role = c("aut", "cre", "cph"), email = "xie@yihui.name", comment = c(ORCID = "0000-0003-0645-5666")),
person(family = "RStudio, PBC", role = "cph"),
Expand Down
2 changes: 1 addition & 1 deletion R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ uninstall_tinytex = function(force = FALSE, dir = tinytex_root()) {
)
r_texmf('remove')
tlmgr_path('remove')
unlink(dir, recursive = TRUE)
unlink(c(dir, path.expand('~/.TinyTeX')), recursive = TRUE)
}

#' @param packages Whether to reinstall all currently installed packages.
Expand Down

0 comments on commit fe0eb01

Please sign in to comment.