4e38767320
FreeBSD by default doesn't install bash.
6 lines
114 B
Bash
Executable File
6 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
echo "[BUILD] build system" 1>&2
|
|
exec cargo run --manifest-path build_system/Cargo.toml -- "$@"
|