]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix unquoted YAML in Windows release build (GH-17479)
authorSteve Dower <steve.dower@python.org>
Thu, 5 Dec 2019 23:32:04 +0000 (15:32 -0800)
committerGitHub <noreply@github.com>
Thu, 5 Dec 2019 23:32:04 +0000 (15:32 -0800)
.azure-pipelines/windows-release/stage-publish-nugetorg.yml
.azure-pipelines/windows-release/stage-publish-pythonorg.yml

index 5aba048cd72a6924a6f9ee167868e4868cb762ac..b78bd493a0fd1bbf3f6474b492640a9cd1bd4ccf 100644 (file)
@@ -31,7 +31,7 @@ jobs:
       buildVersionToDownload: specific
       buildId: $(BuildToPublish)
 
-  - powershell: gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del
+  - powershell: 'gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
     displayName: 'Prevent publishing ARM/ARM64 packages'
     workingDirectory: '$(Build.BinariesDirectory)\nuget'
     condition: and(succeeded(), not(variables['PublishArmPackages']))
index 6c61e9ac3bdbbde27b21e04a147f551ce893389a..8c95f1b950cd75e79a5584929aba729ead99d3b2 100644 (file)
@@ -39,7 +39,7 @@ jobs:
       artifactName: embed
       downloadPath: $(Build.BinariesDirectory)
 
-  - powershell: gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del
+  - powershell: 'gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
     displayName: 'Prevent publishing ARM/ARM64 packages'
     workingDirectory: '$(Build.BinariesDirectory)\embed'
     condition: and(succeeded(), not(variables['PublishArmPackages']))