From 5eef79c90498d43925f5547af0bb6aefddf5c9bc Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Mon, 31 Jul 2017 14:20:20 -0400 Subject: [PATCH] Quoting shenanigans maybe? --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 428a247ff..b74da2b4e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,8 +45,8 @@ after_test: $wc = New-Object 'System.Net.WebClient' $endpoint = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" Write-Output "Searching for JUnit XML output beneath $($env:TEST_JUNIT_XML_ROOT)" - Get-ChildItem -Path "$($env:TEST_JUNIT_XML_ROOT)\*" -Recurse -File -Name - Get-ChildItem -Path "$($env:TEST_JUNIT_XML_ROOT)\*" -Recurse -File -Name -Include "*.xml" | ForEach-Object { + Get-ChildItem -Path $env:TEST_JUNIT_XML_ROOT) -Recurse -File -Name + Get-ChildItem -Path $env:TEST_JUNIT_XML_ROOT) -Recurse -File -Name -Include "*.xml" | ForEach-Object { Write-Output "Uploading JUnit XML $($_)" $wc.UploadFile($endpoint, $_) }