We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f842fb7 commit bf60482Copy full SHA for bf60482
.github/workflows/dataconnect.yml
@@ -249,7 +249,7 @@ jobs:
249
loop_count=0
250
while kill -0 ${{ steps.firebase-auth-emulator.outputs.FIREBASE_AUTH_EMULATOR_PID }} ; do
251
loop_count=$((loop_count+1))
252
- if [[ $loop_count == 60 ]] ; then
+ if [[ $loop_count -eq 60 ]] ; then
253
echo "ERROR: timeout waiting for Firebase Auth Emulator process to terminate" >&2
254
exit 1
255
fi
@@ -268,7 +268,7 @@ jobs:
268
269
while kill -0 ${{ steps.data-connect-emulator.outputs.FIREBASE_DATA_CONNECT_EMULATOR_PID }} ; do
270
271
272
echo "ERROR: timeout waiting for Firebase Data Connect Emulator process to terminate" >&2
273
274
0 commit comments