Skip to content

Commit

Permalink
fix R CMD check for Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Mar 31, 2020
1 parent c72265b commit b60826a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/test_r_package_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ Write-Output "Running R CMD check"
$env:_R_CHECK_FORCE_SUGGESTS_=0
if ($env:AZURE -eq "true") {
Write-Output "Running R CMD check without checking documentation"
R.exe CMD check --no-multiarch --no-manual --ignore-vignettes ; Check-Output $?
R.exe CMD check --no-multiarch --no-manual --ignore-vignettes ${PKG_FILE_NAME} ; Check-Output $?
} else {
Write-Output "Running R CMD check as CRAN"
R.exe CMD check --no-multiarch --as-cran ${PKG_FILE_NAME} ; Check-Output $?
R.exe CMD check --no-multiarch --as-cran ${PKG_FILE_NAME} ; Check-Output $?
}

Write-Output "Looking for issues with R CMD check results"
Expand Down

0 comments on commit b60826a

Please sign in to comment.