forked from lix-project/hydra
7 lines
114 B
Bash
7 lines
114 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# wait for hydra-server to listen
|
||
|
while ! nc -z localhost 3000; do sleep 1; done
|
||
|
|
||
|
exec hydra-evaluator
|