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

Steve Dower webhook-mailer at python.org
Wed Sep 19 16:23:37 EDT 2018


https://github.com/python/cpython/commit/76531e2e82319a487d659bc469441bd4b8251608
commit: 76531e2e82319a487d659bc469441bd4b8251608
branch: master
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2018-09-19T13:23:25-07:00
summary:

Ignores failure to update lists (GH-9424)

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