Skip to content

Commit

Permalink
update readme path handling
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Nov 24, 2024
1 parent e36bef7 commit bea47ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Similarly, you can install historical versions by specifying the release tag (e.

```{r, eval = FALSE}
remotes::install_github(
"epinowcast/epidist",
file.path("epinowcast", "epidist"),
dependencies = TRUE, ref = "v0.1.0"
)
```
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ function, though you need to point to `r-universe` instead of CRAN:

``` r
install.packages(
"epidist", repos = "https://epinowcast.r-universe.dev"
"epidist",
repos = "https://epinowcast.r-universe.dev"
)
```

Expand All @@ -75,7 +76,8 @@ tag (e.g. this installs

``` r
remotes::install_github(
"epinowcast/epidist", dependencies = TRUE, ref = "v0.1.0"
file.path("epinowcast", "epidist"),
dependencies = TRUE, ref = "v0.1.0"
)
```

Expand Down

0 comments on commit bea47ca

Please sign in to comment.