From 5fd5386e09dc650a04846b0a962c721bf630d8f2 Mon Sep 17 00:00:00 2001 From: Conner Swann <2635475+yourbuddyconner@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:59:16 -0700 Subject: [PATCH] update risc0 bin path in install script --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 99e6adc..2b987d3 100644 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ cargo prove --version || error_exit "Checking cargo prove version" # Install the Risc0 toolchain curl -L https://risczero.com/install | bash || error_exit "Installing Risc Zero toolchain" -source ~/.bashrc +export PATH="$PATH:$HOME/.risc0/bin" rzup install || error_exit "Updating Risc Zero toolchain" cargo risczero --version || error_exit "Checking cargo risczero version"