From 1ea21aedbe43d51225a3df947f69e20313ce2873 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Tue, 13 Apr 2021 08:19:11 -0700 Subject: [PATCH] deps.sh: Run `apt-get update` Hopefully this will fix the CI tests. This is a common enough issue on CI that Travis mentions it in their documentation: https://docs.travis-ci.com/user/common-build-problems/#linux-apt-fails-to-install-package-with-404-error --- scripts/deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deps.sh b/scripts/deps.sh index a5561a6..ca038a7 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -13,6 +13,7 @@ source /etc/os-release msg "Installing system build dependencies" if [[ "${ID}" =~ "debian" ]] || [[ "${ID_LIKE}" =~ "debian" ]]; then + sudo apt-get update sudo apt-get install \ --no-install-recommends \ --yes \