mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
8 lines
120 B
Bash
Executable file
8 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd something-rust
|
|
cargo build --release
|
|
gzip -c target/release/something-rust > executable.gz
|