Fix PowerShell issue with relative paths

This commit is contained in:
MaksimZhukov
2020-11-23 13:29:46 +03:00
parent ac42875cb8
commit 89a619f4b9
6 changed files with 18 additions and 8 deletions

View File

@ -7,7 +7,17 @@ jobs:
steps:
- checkout: self
submodules: true
# We need this temporary step to have a consistent version of PowerShell on all images.
- task: PowerShell@2
displayName: 'Update PowerShell version for macOS'
condition: eq(variables['Platform'], 'darwin')
inputs:
TargetType: inline
script: |
brew update
brew cask upgrade powershell
- task: PowerShell@2
displayName: 'Build Python $(VERSION)'
inputs: