From d5e3fba72600e2c3c7387c030e26262afd56b8ad Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 30 Mar 2023 16:26:45 -0600 Subject: [PATCH] bootstrap: apt-get update before installing Signed-off-by: Zack Cerza --- bootstrap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap b/bootstrap index a87e7c28a8..123a2bb3bc 100755 --- a/bootstrap +++ b/bootstrap @@ -49,6 +49,8 @@ Linux) echo "$0: missing required packages:" 1>&2 echo "$missing" if [ "$install" = true ]; then + echo "Updating metadata..." + sudo apt-get update echo "Installing missing packages..." sudo apt-get -y install $missing else -- 2.39.5