mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
cfc919f532
This will allow adding dependencies to the build system in the future.
6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "[BUILD] build system" 1>&2
|
|
exec cargo run --manifest-path build_system/Cargo.toml -- "$@"
|