mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 22:28:12 -05:00
16 lines
180 B
Bash
Executable File
16 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
# Path to `drk` binary
|
|
DRK="../../../drk -c drk.toml"
|
|
|
|
while true; do
|
|
if $DRK ping 2> /dev/null; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
$DRK scan
|