File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
.azure-pipelines/windows-release Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 31
31
buildVersionToDownload : specific
32
32
buildId : $(BuildToPublish)
33
33
34
- - powershell : gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del
34
+ - powershell : ' gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
35
35
displayName : ' Prevent publishing ARM/ARM64 packages'
36
36
workingDirectory : ' $(Build.BinariesDirectory)\nuget'
37
37
condition : and(succeeded(), not(variables['PublishArmPackages']))
Original file line number Diff line number Diff line change 39
39
artifactName : embed
40
40
downloadPath : $(Build.BinariesDirectory)
41
41
42
- - powershell : gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del
42
+ - powershell : ' gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
43
43
displayName : ' Prevent publishing ARM/ARM64 packages'
44
44
workingDirectory : ' $(Build.BinariesDirectory)\embed'
45
45
condition : and(succeeded(), not(variables['PublishArmPackages']))
You can’t perform that action at this time.
0 commit comments