9 lines
185 B
Bash
9 lines
185 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# mainly because the electrum https calls seems to crash a fair amount
|
||
|
|
||
|
until go run .; do
|
||
|
echo "Backend crashed with exit code $?. Respawning.." >&2
|
||
|
sleep 1
|
||
|
done
|