From d01760ae41e02a8e54176567748c5fbb10374ecc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 12 Apr 2021 21:04:21 +0200 Subject: [PATCH] Ignore apt-get update error in Travis CI build For now just ignore it, it might be better to prune the repositories we don't need, such as https://downloads.apache.org/cassandra/debian, which result in the errors. --- build/tools/before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 9ae96587d3..9600cc2739 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -46,7 +46,7 @@ case $(uname -s) in dbgsym_pkgs='libfontconfig1-dbgsym libglib2.0-0-dbgsym libgtk-3-0-dbgsym libatk-bridge2.0-0-dbgsym' fi - run_apt update + run_apt update || echo 'Failed to update packages, but continuing nevertheless.' case "$wxCONFIGURE_FLAGS" in *--with-directfb*) libtoolkit_dev='libdirectfb-dev' ;;