setup.sh 441 B

12345678910111213141516171819202122
  1. #!/usr/bin/env bash
  2. set -e
  3. # If OS is supported will install:
  4. # - build tools and any other dependencies required for rust and substrate
  5. # - rustup - rust insaller
  6. # - rust compiler and toolchains
  7. # - skips installing substrate and subkey
  8. curl https://getsubstrate.io -sSf | bash -s -- --fast
  9. source ~/.cargo/env
  10. rustup component add rustfmt clippy
  11. # TODO: Install additional tools...
  12. # - b2sum
  13. # - nodejs
  14. # - npm
  15. # - yarn
  16. # .... ?