8 lines
180 B
Bash
8 lines
180 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && \
|
|
chmod u+x /tmp/rustup.sh && \
|
|
/tmp/rustup.sh -y && \
|
|
rustup update stable
|