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

fix: wrong if clause

parent 6937b9af
No related branches found
No related tags found
1 merge request!75Start testing emulator if it's not running
Pipeline #79077 passed
...@@ -28,7 +28,7 @@ test-x86_64: ...@@ -28,7 +28,7 @@ test-x86_64:
export PATH=$PATH:${ANDROID_SDK_ROOT}/emulator export PATH=$PATH:${ANDROID_SDK_ROOT}/emulator
export PATH=$PATH:${ANDROID_SDK_ROOT}/platform-tools export PATH=$PATH:${ANDROID_SDK_ROOT}/platform-tools
- | - |
if [[ adb devices | grep -q "device" ]]; then if [[ $(adb devices | grep emulator) ]]; then
echo "Emulator is running"; echo "Emulator is running";
else else
echo "Starting emulator"; echo "Starting emulator";
......
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