Skip to content

Commit

Permalink
fix missing remotes::
Browse files Browse the repository at this point in the history
  • Loading branch information
bbest committed Nov 21, 2023
1 parent 66211cf commit d73781e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion .Rprofile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ if (!"glossary" %in% rownames(installed.packages()))
repos = c(
"https://debruine.r-universe.dev",
"https://cloud.r-project.org"))

library(glossary)
glossary::glossary_path("glossary.yml")
glossary::glossary_popup("click")
Expand Down
6 changes: 5 additions & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
# in .Rprofile:
if (!"glossary" %in% rownames(installed.packages()))
remotes::install_github("debruine/glossary")
install.packages(
"glossary",
repos = c(
"https://debruine.r-universe.dev",
"https://cloud.r-project.org"))
library(glossary)
glossary::glossary_path("glossary.yml")
glossary::glossary_popup("click")
Expand Down

0 comments on commit d73781e

Please sign in to comment.