Skip to content

Commit

Permalink
Use remotes, not devtools, to install
Browse files Browse the repository at this point in the history
  • Loading branch information
jabenninghoff committed Sep 21, 2023
1 parent 1711ac7 commit d755e32
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# rdev 1.7.1

* Updated installation instructions in README and templates to use `remotes` instead of `devtools`

# rdev 1.7.0

* Updated `check_renv()` and `ci()` to use `renv::status(dev = TRUE)`, added in `renv` 1.0.3
Expand Down
4 changes: 2 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Feel free to use and/or fork this project!
You can install the development version of rdev from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("jabenninghoff/rdev")
# install.packages("remotes")
remotes::install_github("jabenninghoff/rdev")
```

Or using renv:
Expand Down
4 changes: 2 additions & 2 deletions inst/templates/README-analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ writeLines(notebooks)
You can install the development version of {{{ repo }}} from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("{{{ username }}}/{{{ repo }}}")
# install.packages("remotes")
remotes::install_github("{{{ username }}}/{{{ repo }}}")
```

Or using renv:
Expand Down
4 changes: 2 additions & 2 deletions inst/templates/README-rdev.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Feel free to use and/or fork this project!
You can install the development version of {{{ repo }}} from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("{{{ username }}}/{{{ repo }}}")
# install.packages("remotes")
remotes::install_github("{{{ username }}}/{{{ repo }}}")
```

Or using renv:
Expand Down

0 comments on commit d755e32

Please sign in to comment.