From 8c9a76ba3d85bd5b411f03c917dd207b75db6982 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 19 Sep 2022 11:32:27 -0700 Subject: [PATCH] work around transient (?) problem with apt-get update --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c25655031..4a9edfe6d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,9 @@ sudo: required dist: xenial install: - - sudo apt-get -qq update + # TODO: remove the `|| true`, which is a temporary workaround for + # what I hope is an intermittent problem as I'm trying to release 2.13.9 + - sudo apt-get -qq update || true - sudo apt-get install -y rpm language: scala