Skip to content

Commit 9408f9c

Browse files
committed
Pipe output of Android sdkmanager to grep to remove progress bar
1 parent 2291cb9 commit 9408f9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/android-install-sdk.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ yes | ./sdk/tools/bin/sdkmanager --list --verbose
5858

5959
# --no_https avoids
6060
# javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found
61-
yes | ./sdk/tools/bin/sdkmanager --licenses --no_https
61+
yes | ./sdk/tools/bin/sdkmanager --licenses --no_https | grep -v = || true
6262
yes | ./sdk/tools/bin/sdkmanager --no_https \
6363
"emulator" \
6464
"platform-tools" \
6565
"platforms;android-${API}" \
66-
"${image}"
66+
"${image}" | grep -v = || true
6767

6868
echo "no" |
6969
./sdk/tools/bin/avdmanager create avd \
7070
--name "${1}" \
71-
--package "${image}"
71+
--package "${image}" | grep -v = || true

0 commit comments

Comments
 (0)