Skip to content

Commit

Permalink
[Rust]: Install rustup in a correct way (#3562)
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Nov 17, 2023
1 parent 7119750 commit ea4e1c1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/install-sys-dependencies-mac
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@
set -e

brew install boost ninja xcodegen xcbeautify

if command -v rustup &> /dev/null
then
echo "Rustup is already installed."
else
echo "Rustup is not installed. Installing it now."
brew install rustup
rustup-init -y --default-toolchain none --no-update-default-toolchain
fi

0 comments on commit ea4e1c1

Please sign in to comment.