From c6eed608d9abc9c5ba858b930409497e160ce7dc Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Thu, 20 Jun 2019 10:04:02 +1200 Subject: [PATCH] Fix errors due to VM packages out of date. --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 96321a5b..cb846bd2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,9 @@ jobs: versionSpec: '$(python.version)' architecture: 'x64' - - script: python -m pip install --upgrade pip + - script: | + sudo apt-get update + python -m pip install --upgrade pip displayName: 'Install dependencies' - script: sudo apt-get install ffmpeg