From 46bea6472570bd8eefccbb3a207be06de92fa5fb Mon Sep 17 00:00:00 2001 From: celenity Date: Thu, 5 Jun 2025 15:56:38 -0400 Subject: [PATCH] fix: bump Application Services to v139.0.1 Signed-off-by: celenity --- scripts/get_sources.sh | 3 ++- scripts/versions.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/get_sources.sh b/scripts/get_sources.sh index 83e609b7..84c0e4ae 100755 --- a/scripts/get_sources.sh +++ b/scripts/get_sources.sh @@ -174,7 +174,8 @@ fi # Clone application-services echo "Cloning appservices..." -clone_repo "https://github.com/mozilla/application-services" "$APPSERVICESDIR" "$APPSERVICES_TAG" +#clone_repo "https://github.com/mozilla/application-services" "$APPSERVICESDIR" "$APPSERVICES_TAG" +git clone --branch "$APPSERVICES_BRANCH" --depth=1 https://github.com/mozilla/application-services "$APPSERVICESDIR" (cd "$APPSERVICESDIR" && git submodule update --init --depth=1) # Download Firefox Source diff --git a/scripts/versions.sh b/scripts/versions.sh index ecdb59cf..f00871c9 100644 --- a/scripts/versions.sh +++ b/scripts/versions.sh @@ -11,7 +11,8 @@ FIREFOX_RELEASE_PATH="releases/${FIREFOX_VERSION}" WASI_TAG="wasi-sdk-20" GLEAN_TAG="v64.3.1" GMSCORE_TAG="v0.3.7.250932" -APPSERVICES_TAG="v139.0" +#APPSERVICES_TAG="v139.0" +APPSERVICES_BRANCH="release-v139" # Tools BUNDLETOOL_TAG="1.18.0"