mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-27 18:16:55 +00:00
10 lines
206 B
Bash
10 lines
206 B
Bash
|
#!/bin/bash
|
||
|
# Copyright 2018-2020, 2022, Collabora, Ltd. and the Monado contributors
|
||
|
# SPDX-License-Identifier: BSL-1.0
|
||
|
|
||
|
(
|
||
|
cd $(dirname $0)
|
||
|
bash ./install-ndk.sh
|
||
|
bash ./install-android-sdk.sh
|
||
|
)
|