We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aac7ba commit 791708cCopy full SHA for 791708c
.github/workflows/demo-test.yaml
@@ -41,7 +41,7 @@ jobs:
41
set -e
42
echo "Waiting for hydra nodes to start..."
43
nix shell nixpkgs#coreutils -c timeout 300s bash -c '
44
- until [ $(grep -c "hydra-node-.* is ready" devnet/logs/process-compose.log 2>/dev/null || echo 0) -ge 3 ]; do
+ until [ $(grep "is ready" devnet/logs/process-compose.log 2>/dev/null | wc -l) -ge 3 ]; do
45
echo -n "."
46
sleep 5
47
if ! ps -p $(cat process-compose.pid) > /dev/null; then
0 commit comments