mirror of
https://github.com/romanz/electrs.git
synced 2026-08-13 12:32:52 +02:00
13 lines
172 B
Bash
Executable file
13 lines
172 B
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
T=5
|
|
export RUST_BACKTRACE=1
|
|
while :
|
|
do
|
|
cargo fmt
|
|
cargo check --release
|
|
cargo run --release -- $*
|
|
echo "Restarting in $T seconds..."
|
|
sleep $T
|
|
done
|