Skip to content

Commit c6b25a3

Browse files
Fix quotes
1 parent ede58dd commit c6b25a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/releaseBuild/yaml/releaseBuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ stages:
121121
artifact: release
122122

123123
- pwsh: |
124-
Write-Verbose -Verbose "Enumerating "$(Pipeline.Workspace)/release"
124+
Write-Verbose -Verbose "Enumerating $(Pipeline.Workspace)/release"
125125
$downloadedArtifacts = Get-ChildItem -Recurse "$(Pipeline.Workspace)/release"
126126
$downloadedArtifacts
127127
@@ -132,7 +132,7 @@ stages:
132132
$destFolder = New-Item -Path "$expandedRoot/$($_.BaseName)/" -ItemType Directory -Verbose
133133
Expand-Archive -Path $_.FullName -DestinationPath $destFolder -Force
134134
135-
Get-ChildItem -Path $destFolder -Recurse -Filter *.pdb | ForEach-Object {
135+
Get-ChildItem -Path $destFolder -Recurse -Filter '*.pdb' | ForEach-Object {
136136
$runtimeFolder = New-Item -Path "$symbolsRoot/$($_.BaseName)/" -ItemType Directory -Verbose
137137
Copy-Item -Path $_.FullName -Destination $runtimeFolder -Verbose
138138
}

0 commit comments

Comments
 (0)