mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
7 lines
No EOL
255 B
Bash
Executable file
7 lines
No EOL
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo 'install rust'
|
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
|
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
|
|
echo 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bash_profile
|
|
source ~/.bash_profile |