env.mk 351 B

12345678910
  1. flowy_dev: install_rust
  2. cargo make flowy_dev
  3. install_rust:
  4. #https://rust-lang.github.io/rustup/installation/other.html
  5. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
  6. curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
  7. echo 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bash_profile
  8. source ~/.bash_profile