mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "[BUILD] build system" 1>&2
|
|
cd build_system
|
|
cargo build --release
|
|
cd ..
|
|
./build_system/target/release/y $@
|