Skip to content

Commit

Permalink
Update azure-pipelines.yml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
theace0296 committed May 26, 2020
1 parent ea70062 commit c21eec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ steps:
python -m pip install -r ./BeatMapSynthesizer/build/scripts/requirements.txt
python -m pip install https://github.com/pyinstaller/pyinstaller/tarball/develop
python -m pip install https://github.com/librosa/librosa/zipball/master
$env:Path -match '[^;]*(Python)[^;]*'
if ($Matches[0].Contains('Scripts')) { $PyPath = ($Matches[0] + 'pywin32_postinstall.py').Normalize() } else { $PyPath = ($Matches[0] + 'Scripts\pywin32_postinstall.py').Normalize() }
$env:Path -match '[^;]*Python[^;]*'
if ($Matches[0].Contains('Scripts')) { $PyPath = (Join-Path -Path $Matches[0] -ChildPath 'pywin32_postinstall.py') } else { $PyPath = (Join-Path -Path $Matches[0] -ChildPath 'Scripts\pywin32_postinstall.py') }
python $PyPath -install
displayName: Install packages

Expand Down

0 comments on commit c21eec2

Please sign in to comment.