File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ jobs:
230
230
loop_count=0
231
231
while kill -0 ${{ steps.logcat-capture.outputs.LOGCAT_PID }} ; do
232
232
loop_count=$((loop_count+1))
233
- if [[ $loop_count == 60 ]] ; then
233
+ if [[ $loop_count -eq 60 ]] ; then
234
234
echo "ERROR: timeout waiting for logcat process to terminate" >&2
235
235
exit 1
236
236
fi
@@ -249,7 +249,7 @@ jobs:
249
249
loop_count=0
250
250
while kill -0 ${{ steps.firebase-auth-emulator.outputs.FIREBASE_AUTH_EMULATOR_PID }} ; do
251
251
loop_count=$((loop_count+1))
252
- if [[ $loop_count == 60 ]] ; then
252
+ if [[ $loop_count -eq 60 ]] ; then
253
253
echo "ERROR: timeout waiting for Firebase Auth Emulator process to terminate" >&2
254
254
exit 1
255
255
fi
@@ -268,7 +268,7 @@ jobs:
268
268
loop_count=0
269
269
while kill -0 ${{ steps.data-connect-emulator.outputs.FIREBASE_DATA_CONNECT_EMULATOR_PID }} ; do
270
270
loop_count=$((loop_count+1))
271
- if [[ $loop_count == 60 ]] ; then
271
+ if [[ $loop_count -eq 60 ]] ; then
272
272
echo "ERROR: timeout waiting for Firebase Data Connect Emulator process to terminate" >&2
273
273
exit 1
274
274
fi
You can’t perform that action at this time.
0 commit comments