autobuild.sh 291 B

1234
  1. #!/usr/bin/env bash
  2. # Automatically builds btconsole and btconsole-client when files in their respective crates change.
  3. set -euo pipefail
  4. cargo watch -- sh -c 'cd ../btconsole-client && trunk build && cd - && cargo run --features="tokio/rt-multi-thread env_logger ctrlc" --bin btconsole-bin'