rust_setup.sh 121 B

1234567
  1. #!/bin/sh
  2. if [ -z $1 ];then
  3. curl https://sh.rustup.rs -sSf | sh
  4. else
  5. curl https://sh.rustup.rs -sSf | sh -s -- $@
  6. fi