Skip to content

Commit

Permalink
use cat?
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Nuno Monteiro <anmonteiro@gmail.com>
  • Loading branch information
anmonteiro committed Oct 19, 2024
1 parent 3a340fb commit 056af19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/blackbox-tests/test-cases/pkg/gh10959.t
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Repro `dune exec --watch` crash with pkg management
$ TIME_WAITED=0
$ MAX_WAIT_TIME=30
$ SLEEP_INTERVAL=1
$ while [ $(wc -l < output.log) -lt 3 ] && [ "$TIME_WAITED" -lt "$MAX_WAIT_TIME" ]; do
$ while [ $(cat output.log | wc -l) -lt 3 ] && [ "$TIME_WAITED" -lt "$MAX_WAIT_TIME" ]; do
> sleep 0.1
> TIME_WAITED=$((TIME_WAITED + SLEEP_INTERVAL))
> done
Expand Down

0 comments on commit 056af19

Please sign in to comment.