From cf04558ade7860120a9db171f4174a744135b02f Mon Sep 17 00:00:00 2001 From: Cristina Suteu Date: Fri, 13 Oct 2023 10:13:54 +0300 Subject: [PATCH] CI/azure/build_osc_arm: add apt-get update add apt-get update before installing packages this solves E:Failed to fetch package error Signed-off-by: Cristina Suteu --- CI/azure/build_osc_arm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/CI/azure/build_osc_arm.sh b/CI/azure/build_osc_arm.sh index c206b9e6..d500b5c8 100644 --- a/CI/azure/build_osc_arm.sh +++ b/CI/azure/build_osc_arm.sh @@ -23,6 +23,7 @@ install_apt_pkgs() { autotools-dev \ autoconf \ " + apt-get update apt-get install -y $APT_PKGS git config --global --add safe.directory /ci }