autobuild.sh 272 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. RUST_LOG=warn,btfsd=debug,btconsole=debug,bttp=debug cargo watch -- sh -c 'cd ../btconsole-client && trunk build && cd - && cargo run'