From b36f77ef75f89e1d985643844307c6ee71220256 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Wed, 24 Jul 2024 16:49:12 +1000 Subject: [PATCH] Revert --image-download always flag to avoid CI getting rate limited (#6163) * Revert --image-download always flag to avoid CI getting rate limited by Docker Hub --- scripts/local_testnet/start_local_testnet.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/local_testnet/start_local_testnet.sh b/scripts/local_testnet/start_local_testnet.sh index 433e6280c2..330df76d81 100755 --- a/scripts/local_testnet/start_local_testnet.sh +++ b/scripts/local_testnet/start_local_testnet.sh @@ -75,14 +75,11 @@ else echo "Not rebuilding Lighthouse Docker image." fi -IMAGE_DOWNLOAD_FLAG="" - if [ "$KEEP_ENCLAVE" = false ]; then # Stop local testnet kurtosis enclave rm -f $ENCLAVE_NAME 2>/dev/null || true - IMAGE_DOWNLOAD_FLAG="--image-download always" fi -kurtosis run --enclave $ENCLAVE_NAME github.com/ethpandaops/ethereum-package $IMAGE_DOWNLOAD_FLAG --args-file $NETWORK_PARAMS_FILE +kurtosis run --enclave $ENCLAVE_NAME github.com/ethpandaops/ethereum-package --args-file $NETWORK_PARAMS_FILE echo "Started!"