Skip to content
Snippets Groups Projects
Verified Commit 086fbaa7 authored by Burak Hançerli's avatar Burak Hançerli :headphones:
Browse files

fix: while syntax

parent 0f47a405
No related branches found
No related tags found
1 merge request!82fix: update to the latest zxing commit on master
Pipeline #82203 failed
......@@ -54,7 +54,7 @@ test-android:
- cd ${QDS_CI_ARTIFACTS_PATH}/android/test || exit 1
- mkdir -p ${QDS_CI_JOB_TEST_RESULTS_PATH}
- |
while [[ $(adb install -r -g android-build-release.apk) ]]; do
while ! adb install -r -g android-build-release.apk; do
sleep 1
counter=$((counter+1))
if [[ $counter -gt 120 ]]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment