From 67eb0508849c6ebd32eb9251979e60e332983d98 Mon Sep 17 00:00:00 2001 From: Gokul GK <8915158+gokulkgm@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:01:46 +0530 Subject: [PATCH] setup: android_build_env: extend focal packages to jammy as well --- setup/android_build_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/android_build_env.sh b/setup/android_build_env.sh index 372385c5..a005c25b 100755 --- a/setup/android_build_env.sh +++ b/setup/android_build_env.sh @@ -27,7 +27,7 @@ LSB_RELEASE="$(lsb_release -d | cut -d ':' -f 2 | sed -e 's/^[[:space:]]*//')" if [[ ${LSB_RELEASE} =~ "Mint 18" || ${LSB_RELEASE} =~ "Ubuntu 16" ]]; then PACKAGES="${UBUNTU_16_PACKAGES}" -elif [[ ${LSB_RELEASE} =~ "Ubuntu 20" || ${LSB_RELEASE} =~ "Ubuntu 21" ]]; then +elif [[ ${LSB_RELEASE} =~ "Ubuntu 20" || ${LSB_RELEASE} =~ "Ubuntu 21" || ${LSB_RELEASE} =~ "Ubuntu 22" ]]; then PACKAGES="${UBUNTU_20_PACKAGES}" elif [[ ${LSB_RELEASE} =~ "Debian GNU/Linux 10" ]]; then PACKAGES="${DEBIAN_10_PACKAGES}"