mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
11 lines
371 B
Bash
11 lines
371 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export ANDROID_SDK_ROOT=$MOZ_FETCHES_DIR
|
||
|
|
||
|
yes | "${ANDROID_SDK_ROOT}/tools/bin/sdkmanager" --licenses
|
||
|
|
||
|
# It's nice to have the build logs include the state of the world upon completion.
|
||
|
"${ANDROID_SDK_ROOT}/tools/bin/sdkmanager" --list
|
||
|
|
||
|
tar cf - -C "$ANDROID_SDK_ROOT" . --transform 's,^\./,android-sdk-linux/,' | xz > "$UPLOAD_DIR/android-sdk-linux.tar.xz"
|