Skip to content

Commit

Permalink
fix: tee output
Browse files Browse the repository at this point in the history
  • Loading branch information
grqz authored Sep 15, 2024
1 parent d00f5b5 commit 8924261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
PING_RESP_PATH=$(mktemp)
ping() {
until $(curl -o "$PING_RESP_PATH" --silent --fail http://127.0.0.1:4416/ping 2>&1); do
until $(curl -o- --silent --fail http://127.0.0.1:4416/ping 2>&1 | tee "$PING_RESP_PATH"); do
sleep ${1:-0.5}
done
}
Expand Down

0 comments on commit 8924261

Please sign in to comment.