From f5d8a07182d81c6a94d5b2b0a7a91bd9a09c3658 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Sat, 2 Nov 2024 19:36:35 +0000 Subject: [PATCH] chore: update install instructions for foundry to display version of rust to install (#9653) --- bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index c1e00678ce4..5c0f807af75 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -74,7 +74,8 @@ function check_toolchains { if ! $tool --version 2> /dev/null | grep 25f24e6 > /dev/null; then encourage_dev_container echo "$tool not in PATH or incorrect version (requires 25f24e677a6a32a62512ad4f561995589ac2c7dc)." - echo "Installation: https://book.getfoundry.sh/getting-started/installation (requires rust 1.75)" + echo "Installation: https://book.getfoundry.sh/getting-started/installation (requires rust 1.79+)" + echo " rustup toolchain install 1.79" echo " curl -L https://foundry.paradigm.xyz | bash" echo " foundryup -b 25f24e677a6a32a62512ad4f561995589ac2c7dc" exit 1