Skip to content

Commit 1d6940e

Browse files
committed
fix syntax error in bash script
1 parent ef860d4 commit 1d6940e

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/visreg-mobile.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,7 @@ jobs:
157157
158158
# sys.boot_completed=1 fires before all services are ready; wait for
159159
# the package manager specifically before attempting install.
160-
until adb shell pm list packages > /dev/null 2>&1; do
161-
echo "Waiting for package manager..."; sleep 1
162-
done
160+
while ! adb shell pm list packages > /dev/null 2>&1; do echo "Waiting for package manager..."; sleep 1; done
163161
164162
adb install -r apps/mobile-app/prebuilds/android-release-hermes/binary.apk
165163

0 commit comments

Comments
 (0)