From c4357c8c4af5f763a81939ff4abe19b5e0e40029 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 1 Mar 2024 15:24:13 -0300 Subject: [PATCH] chore: Do not download foundry during L1 contracts fast bootstrap (#4865) We're downloading the pre-built artifacts after-all, so no point in installing Foundry. --- l1-contracts/bootstrap.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/l1-contracts/bootstrap.sh b/l1-contracts/bootstrap.sh index fa8189b567d..547735ef7a2 100755 --- a/l1-contracts/bootstrap.sh +++ b/l1-contracts/bootstrap.sh @@ -15,12 +15,13 @@ if [ -n "$CMD" ]; then fi fi -# Install foundry. -. ./scripts/install_foundry.sh # Attempt to just pull artefacts from CI and exit on success. [ -n "${USE_CACHE:-}" ] && ./bootstrap_cache.sh && exit +# Install foundry. +. ./scripts/install_foundry.sh + # Clean rm -rf broadcast cache out serve