Skip to content

Commit f842fb7

Browse files
dconeybeCopilot
andauthored
dataconnect.yml: use -eq instead of == when comparing integers
Co-authored-by: Copilot <[email protected]>
1 parent 2c9a721 commit f842fb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/dataconnect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ jobs:
230230
loop_count=0
231231
while kill -0 ${{ steps.logcat-capture.outputs.LOGCAT_PID }} ; do
232232
loop_count=$((loop_count+1))
233-
if [[ $loop_count == 60 ]] ; then
233+
if [[ $loop_count -eq 60 ]] ; then
234234
echo "ERROR: timeout waiting for logcat process to terminate" >&2
235235
exit 1
236236
fi

0 commit comments

Comments
 (0)