mirror of
https://github.com/ParkerTenBroeck/hdl_sim.git
synced 2026-06-06 21:24:06 -04:00
9 lines
150 B
Bash
Executable file
9 lines
150 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
|
|
pushd relay >/dev/null
|
|
cargo +nightly build -Z bindeps --release
|
|
popd >/dev/null
|
|
|
|
./target/release/relay "$@"
|