We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2291cb9 commit 9408f9cCopy full SHA for 9408f9c
ci/android-install-sdk.sh
@@ -58,14 +58,14 @@ yes | ./sdk/tools/bin/sdkmanager --list --verbose
58
59
# --no_https avoids
60
# javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found
61
-yes | ./sdk/tools/bin/sdkmanager --licenses --no_https
+yes | ./sdk/tools/bin/sdkmanager --licenses --no_https | grep -v = || true
62
yes | ./sdk/tools/bin/sdkmanager --no_https \
63
"emulator" \
64
"platform-tools" \
65
"platforms;android-${API}" \
66
- "${image}"
+ "${image}" | grep -v = || true
67
68
echo "no" |
69
./sdk/tools/bin/avdmanager create avd \
70
--name "${1}" \
71
- --package "${image}"
+ --package "${image}" | grep -v = || true
0 commit comments