Use stable Rust from ./scripts/run.sh

This commit is contained in:
Roman Zeyde 2018-08-02 15:51:21 +03:00
parent b71c41854e
commit 31ee0df0bf
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

@ -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