diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2019-09-04 14:37:29 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 14:37:29 +1000 |
commit | 922c7f4e510c12a7e207ba08904c2523d99edd55 (patch) | |
tree | 6afd246fad5bc69a0b67062aec170c4b590e4240 | |
parent | e1981b8b8d028132ca13d24782110c6715a1652f (diff) | |
parent | ce3edaad26c5275bcb323cbef9219a3948280efe (diff) |
Merge pull request #2835 from chris062689/master
CI Fix (Azure/Testing) - apt update before upgrade. Use apt-get.
-rw-r--r-- | .ci/templates/build-testing.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/templates/build-testing.yml b/.ci/templates/build-testing.yml index a307addfd..4c9625944 100644 --- a/.ci/templates/build-testing.yml +++ b/.ci/templates/build-testing.yml @@ -10,7 +10,7 @@ jobs: BuildSuffix: 'windows-testing' ScriptFolder: 'windows' steps: - - script: sudo apt upgrade python3-pip && pip install requests urllib3 + - script: sudo apt-get update && sudo apt-get --only-upgrade -y install python3-pip && pip install requests urllib3 displayName: 'Prepare Environment' - task: PythonScript@0 condition: eq(variables['Build.Reason'], 'PullRequest') |