From 91cf04c145cf0c5a82a1d65bebcbbd7b22aa48f5 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Mon, 15 Apr 2024 08:07:48 +0200 Subject: [PATCH] Run apt-get update before installing in CI --- scripts/ci.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ci.sh b/scripts/ci.sh index 8555681ab..55c0c1839 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -13,6 +13,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")/.." rm -rf build if ! command -v qemu-aarch64; then + apt-get update apt-get -y --no-install-recommends install qemu-user fi -- GitLab