From c2db64737906c49d95c0f78159913233d1cad6c9 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Wed, 21 Jul 2021 15:48:59 +0100 Subject: [PATCH] Run apt update before doing anything else. --- pkg/debian/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/debian/setup.sh b/pkg/debian/setup.sh index 229d029b0..48f1bccfd 100755 --- a/pkg/debian/setup.sh +++ b/pkg/debian/setup.sh @@ -5,6 +5,9 @@ if [ "$EUID" -ne 0 ] exit 1 fi +echo "Running apt update..." +apt update + echo "Installing system pre-requisites..." apt install -y curl apt-transport-https ca-certificates gnupg