Skip to content

Commit

Permalink
#105 typo in R conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
spoltier committed Dec 17, 2020
1 parent d6f5ced commit 997d38f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
_R_CHECK_CRAN_INCOMING_: false
FULL_TEST_SUITE: 1
run: |-
check_args <- if(${{matrix.config.os-name}} == "windows") {
check_args <- if("${{matrix.config.os-name}}" == "windows") {
c("--no-manual", "--no-vignettes", "--no-build-vignettes", "--check-subdirs=no", "--no-multiarch")
} else {
c("--no-manual", "--no-vignettes", "--no-build-vignettes", "--check-subdirs=no")
Expand All @@ -195,7 +195,7 @@ jobs:
FULL_TEST_SUITE: 1
RCMDCHECK: "FALSE"
run: |
install_opts = if(${{matrix.config.os-name}} == "windows") {
install_opts = if("${{matrix.config.os-name}}" == "windows") {
c("--no-multiarch")
} else {
c()
Expand Down

0 comments on commit 997d38f

Please sign in to comment.