File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ stages:
121
121
artifact : release
122
122
123
123
- pwsh : |
124
- Write-Verbose -Verbose "Enumerating " $(Pipeline.Workspace)/release"
124
+ Write-Verbose -Verbose "Enumerating $(Pipeline.Workspace)/release"
125
125
$downloadedArtifacts = Get-ChildItem -Recurse "$(Pipeline.Workspace)/release"
126
126
$downloadedArtifacts
127
127
@@ -132,7 +132,7 @@ stages:
132
132
$destFolder = New-Item -Path "$expandedRoot/$($_.BaseName)/" -ItemType Directory -Verbose
133
133
Expand-Archive -Path $_.FullName -DestinationPath $destFolder -Force
134
134
135
- Get-ChildItem -Path $destFolder -Recurse -Filter *.pdb | ForEach-Object {
135
+ Get-ChildItem -Path $destFolder -Recurse -Filter ' *.pdb' | ForEach-Object {
136
136
$runtimeFolder = New-Item -Path "$symbolsRoot/$($_.BaseName)/" -ItemType Directory -Verbose
137
137
Copy-Item -Path $_.FullName -Destination $runtimeFolder -Verbose
138
138
}
You can’t perform that action at this time.
0 commit comments