mirror of
https://github.com/HQarroum/docker-android.git
synced 2026-07-15 06:47:07 +02:00
fix: check when use 'set -e'
This commit is contained in:
@@ -25,8 +25,8 @@ socat tcp-listen:"$ADB_PORT",bind="$LOCAL_IP",fork tcp:127.0.0.1:"$ADB_PORT" &
|
|||||||
export USER=root
|
export USER=root
|
||||||
|
|
||||||
# Creating the Android Virtual Emulator.
|
# Creating the Android Virtual Emulator.
|
||||||
TEST_AVD=$(avdmanager list avd | grep "android")
|
TEST_AVD=$(avdmanager list avd | grep -c "android.avd" || true)
|
||||||
if [ -n "$TEST_AVD" ]; then
|
if [ "$TEST_AVD" == "1" ]; then
|
||||||
echo "Use the exists Android Virtual Emulator ..."
|
echo "Use the exists Android Virtual Emulator ..."
|
||||||
else
|
else
|
||||||
echo "Creating the Android Virtual Emulator ..."
|
echo "Creating the Android Virtual Emulator ..."
|
||||||
|
|||||||
Reference in New Issue
Block a user