Skip to content

Commit

Permalink
ci: Fix installing the Android SDK
Browse files Browse the repository at this point in the history
Apparently the https urls are broken due to some certificate validation
whatnots, and so far the least intrusive solution I've found is to just disable
that.
  • Loading branch information
alexcrichton committed Oct 12, 2017
1 parent 7ac017d commit 07117cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/docker/scripts/android-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ download_sysimage() {
# Keep printing yes to accept the licenses
while true; do echo yes; sleep 10; done | \
/android/sdk/tools/android update sdk -a --no-ui \
--filter "$filter"
--filter "$filter" --no-https
}

create_avd() {
Expand Down

0 comments on commit 07117cf

Please sign in to comment.