Skip to content

Commit

Permalink
Install magick package when building pkgdown
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 1, 2019
1 parent d792d40 commit 62a051a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion R/steps-pkgdown.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ BuildPkgdown <- R6Class(
},

prepare = function() {
verify_install(c("pkgdown", "remotes"))
# magick is needed for favicon
verify_install(c("pkgdown", "remotes", "magick"))
super$prepare()
}
),
Expand Down
1 change: 0 additions & 1 deletion vignettes/advanced.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ This can be checked with the condition `ci()$is_interactive()`.

Usually required packages should be installed based on the DESCRIPTION file of a package.
You should only use the following steps in extraordinary circumstances.
One could be the requirement of the _magick_ package for a successful favicon creation for a _pkgdown_ website.

## GitHub packages

Expand Down

0 comments on commit 62a051a

Please sign in to comment.