Skip to content

Commit

Permalink
Correct one misuse by using getOption()
Browse files Browse the repository at this point in the history
Signed-off-by: Liang Zhang <[email protected]>
  • Loading branch information
psychelzh committed Dec 9, 2023
1 parent 5fadfb1 commit 8a32a1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ devtools::install_github("psychelzh/tarflow.iquizoo@develop")
Or you can install the stable version from [psychelzh's R-universe](https://psychelzh.r-universe.dev/) with:

``` r
install.packages("tarflow.iquizoo", repos = c(options("repos"), "https://psychelzh.r-universe.dev"))
install.packages("tarflow.iquizoo", repos = c(getOption("repos"), "https://psychelzh.r-universe.dev"))
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Or you can install the stable version from [psychelzh’s
R-universe](https://psychelzh.r-universe.dev/) with:

``` r
install.packages("tarflow.iquizoo", repos = c(options("repos"), "https://psychelzh.r-universe.dev"))
install.packages("tarflow.iquizoo", repos = c(getOption("repos"), "https://psychelzh.r-universe.dev"))
```

## Usage
Expand Down

0 comments on commit 8a32a1f

Please sign in to comment.