From 9e6aa498623dd44cce346417928ed3af46d95a82 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 31 Mar 2020 11:06:28 -0500 Subject: [PATCH] misc whitespace changes --- .ci/test_r_package_windows.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.ci/test_r_package_windows.ps1 b/.ci/test_r_package_windows.ps1 index 5ac5a49cb6f0..e4bf86158fc9 100644 --- a/.ci/test_r_package_windows.ps1 +++ b/.ci/test_r_package_windows.ps1 @@ -72,13 +72,12 @@ Rscript build_r.R --skip-install ; Check-Output $? $PKG_FILE_NAME = Get-Item *.tar.gz $LOG_FILE_NAME = "lightgbm.Rcheck/00check.log" -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 ${PKG_FILE_NAME} ; Check-Output $? } else { - Write-Output "Running R CMD check as CRAN" + Write-Output "Running R CMD check as CRAN" R.exe CMD check --no-multiarch --as-cran ${PKG_FILE_NAME} ; Check-Output $? }