File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -265,11 +265,11 @@ extends:
265265 pool :
266266 vmImage : ubuntu-latest
267267 steps :
268- - powershell : |
268+ - pwsh : |
269269 $fileNames = "$(Pipeline.Workspace)/Microsoft.OpenApi.Hidi.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.YamlReader.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.Workbench.*.nupkg"
270270 foreach($fileName in $fileNames) {
271271 if(Test-Path $fileName) {
272- rm $fileName -Verbose
272+ Remove-Item $fileName -Verbose
273273 }
274274 }
275275 displayName: remove other nupkgs to avoid duplication
@@ -365,7 +365,7 @@ extends:
365365 inlineScript : |
366366 az acr login --name $(REGISTRY)
367367
368- - powershell : |
368+ - pwsh : |
369369 $content = [XML](Get-Content $(Pipeline.Workspace)/Directory.Build.props)
370370 Write-Host "XML loaded, finding version..."
371371
@@ -435,7 +435,7 @@ extends:
435435 condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])
436436
437437 - script : |
438- docker run --privileged --rm tonistiigi/binfmt --install all
438+ docker run --privileged --rm msgraphprodregistry.azurecr.io/ tonistiigi/binfmt --install all
439439 displayName: "Enable multi-platform builds"
440440
441441 - script : |
You can’t perform that action at this time.
0 commit comments