Skip to content

Commit

Permalink
build_check_trace: fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4452852 committed Jan 22, 2025
1 parent ba16190 commit efded7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/trace/build_check_trace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sudo ./zig-out/bin/trace --timeout 2 --testing >./trace_output.txt 2>&1 &
counter=0
until grep -q Tracing ./trace_output.txt; do
sleep .1;
if [ "$counter" == 100 ]; then
if [ "$counter" = "100" ]; then
echo "Timeout!"
cat ./trace_output.txt
exit 1
Expand Down

0 comments on commit efded7f

Please sign in to comment.