Browse Source

Use stable Rust from ./scripts/run.sh

refactor-mempool
Roman Zeyde 6 years ago
parent
commit
31ee0df0bf
No known key found for this signature in database GPG Key ID: 87CAE5FA46917CBB
  1. 8
      scripts/run.sh

8
scripts/run.sh

@ -4,14 +4,16 @@ trap 'kill $(jobs -p)' EXIT
DELAY=5
LOG=/tmp/electrs.log
CARGO="cargo +stable"
tail -v -n0 -F "$LOG" &
export RUST_BACKTRACE=1
while :
do
cargo fmt
cargo check --release
cargo run --release -- $* 2>> "$LOG"
$CARGO fmt
$CARGO check --release
$CARGO run --release -- $* 2>> "$LOG"
echo "Restarting in $DELAY seconds..."
sleep $DELAY
done

Loading…
Cancel
Save