[Python-checkins] Ignores failure to update lists (GH-9424)

Steve Dower webhook-mailer at python.org
Wed Sep 19 17:34:32 EDT 2018


https://github.com/python/cpython/commit/71bc694f380fded55ac15aafaff41a12f329a90e
commit: 71bc694f380fded55ac15aafaff41a12f329a90e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Steve Dower <steve.dower at microsoft.com>
date: 2018-09-19T14:34:29-07:00
summary:

Ignores failure to update lists (GH-9424)

(cherry picked from commit 76531e2e82319a487d659bc469441bd4b8251608)

Co-authored-by: Steve Dower <steve.dower at microsoft.com>

files:
M .vsts/install_deps.sh

diff --git a/.vsts/install_deps.sh b/.vsts/install_deps.sh
index 7b98cfddb6c4..b1fa576047e6 100755
--- a/.vsts/install_deps.sh
+++ b/.vsts/install_deps.sh
@@ -1,4 +1,4 @@
-sudo apt-get update
+sudo apt-get update || true
 
 sudo apt-get -yq install \
     build-essential \



More information about the Python-checkins mailing list