mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
8 lines
217 B
Bash
8 lines
217 B
Bash
#!/bin/sh
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain none -y
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
cd something-rust
|
|
cargo build --release
|
|
gzip -c target/release/something-rust > something-rust.gz
|