From c70a6bb8f22eda66933a225125c73b039cbb283d Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Wed, 4 Feb 2026 10:38:29 -0600 Subject: [PATCH] Run apt update before the apt install in install-timelord.sh to ensure package lists are up to date (#20471) Run apt update before the install to ensure package lists are up to date --- install-timelord.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-timelord.sh b/install-timelord.sh index fda588077f..f9f0a303c9 100755 --- a/install-timelord.sh +++ b/install-timelord.sh @@ -95,6 +95,9 @@ if [ -e "$THE_PATH" ]; then else if [ -e venv/bin/python ] && test "$UBUNTU_DEBIAN"; then echo "Installing chiavdf dependencies on Ubuntu/Debian" + # Update package lists before install + echo "apt-get update" + sudo apt-get update # Install remaining needed development tools - assumes venv and prior run of install.sh echo "apt-get install libgmp-dev libboost-python-dev $PYTHON_DEV_DEPENDENCY libboost-system-dev build-essential -y" sudo apt-get install libgmp-dev libboost-python-dev "$PYTHON_DEV_DEPENDENCY" libboost-system-dev build-essential -y