From e91d38f023fd925a9778895ee37e910c11bc61ea Mon Sep 17 00:00:00 2001 From: Caleb Aikens Date: Wed, 17 Jul 2024 09:46:25 -0400 Subject: [PATCH] fix(setup): configure the current shell to include cargo before using it in setup.sh --- setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.sh b/setup.sh index eab31081..ca7ab7c9 100755 --- a/setup.sh +++ b/setup.sh @@ -34,6 +34,7 @@ fi # Install rust compiler echo "Installing rust compiler" curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.76 +. $HOME/.cargo/env cargo install cbindgen # Setup Poetry echo "Installing poetry"