From 359c39d901ba6ac24acbabbf58a590fa3811ffac Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Wed, 25 Aug 2021 18:00:12 -0700 Subject: [PATCH] Update integration test runner --- eng/format-verifier.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/format-verifier.ps1 b/eng/format-verifier.ps1 index 45935d8541..f6a691ff75 100644 --- a/eng/format-verifier.ps1 +++ b/eng/format-verifier.ps1 @@ -92,7 +92,7 @@ try { if ($stage -eq "format-folder") { Write-Output "$(Get-Date) - $folderName - Formatting Folder" - $output = dotnet.exe "$currentLocation/artifacts/bin/dotnet-format/Release/net6.0/dotnet-format.dll" whitespace -folder $repoPath -v diag --verify-no-changes | Out-String + $output = dotnet.exe "$currentLocation/artifacts/bin/dotnet-format/Release/net6.0/dotnet-format.dll" whitespace $repoPath --folder -v diag --verify-no-changes | Out-String Write-Output $output.TrimEnd() # Ignore CheckFailedExitCode since we don't expect these repos to be properly formatted.