From 573a1e766285f0d4a0797f6b239f30dc7158b918 Mon Sep 17 00:00:00 2001
From: Flame Sage <chris062689@gmail.com>
Date: Wed, 4 Sep 2019 03:49:55 +0000
Subject: [PATCH] apt update before upgrade. Use apt-get.

Identified a bug in the script which uses the azure image when attempting to upgrade python3-pip.
Package index was out of date because apt-get update was not ran before attempting the upgrade.
---
 .ci/templates/build-testing.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.ci/templates/build-testing.yml b/.ci/templates/build-testing.yml
index a307addfd4..9ce072b9b6 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 -y upgrade python3-pip && pip install requests urllib3
     displayName: 'Prepare Environment'
   - task: PythonScript@0
     condition: eq(variables['Build.Reason'], 'PullRequest')