diff --git a/build-community.sh b/build-community.sh index 84d375f2d81a612a97067364e788cfee3411233c..b587936afb4344c0e3a79f06ae6a37cbf1c54fdf 100755 --- a/build-community.sh +++ b/build-community.sh @@ -109,6 +109,10 @@ for branch in ${BRANCH_NAME//,/ }; do themuppets_branch="lineage-19.1" android_version="12" ;; + *t*) + themuppets_branch="lineage-20.0" + android_version="13" + ;; *) echo ">> [$(date)] Building branch $branch is not (yet) suppported" exit 1 diff --git a/src/build.sh b/src/build.sh index 47e5c2ba9cd0c9624ce80b21cdd49954bcb55ce5..aa0ca848802c0ab581df61f73d1d9abaef39a4f0 100755 --- a/src/build.sh +++ b/src/build.sh @@ -34,7 +34,7 @@ fi sync_successful=true use_openjdk_from_ubuntu=false -branch_dir=$(sed -E 's/^v[0-9](\.[0-9]*){0,2}(-(beta|alpha|rc)(\.[0-9]*){0,1}){0,1}-(nougat|oreo|pie|q|r|s)(-[a-zA-Z0-9_]*)*$/\5/' <<< "${BRANCH_NAME}") +branch_dir=$(sed -E 's/^v[0-9](\.[0-9]*){0,2}(-(beta|alpha|rc)(\.[0-9]*){0,1}){0,1}-(nougat|oreo|pie|q|r|s|t)(-[a-zA-Z0-9_]*)*$/\5/' <<< "${BRANCH_NAME}") branch_dir=${branch_dir^^} if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then @@ -67,6 +67,10 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then themuppets_branch="lineage-19.1" android_version="12" ;; + *t*) + themuppets_branch="lineage-20.0" + android_version="13" + ;; *) echo ">> [$(date)] Building branch $branch is not (yet) suppported" exit 1