mirror of
https://github.com/servo/servo.git
synced 2025-07-08 07:53:40 +01:00
10 lines
176 B
Bash
Executable file
10 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain none -y
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
echo HOME=$HOME
|
|
which cargo
|
|
|
|
cd something-rust
|
|
cargo run
|