File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -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