We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718b96c commit 8eb389aCopy full SHA for 8eb389a
swift-ci/sdks/android/scripts/toolchain-vars.sh
@@ -15,9 +15,9 @@
15
OS=$(echo $HOST_OS | tr -d '.')
16
# e.g., "swift-6.1-RELEASE"
17
# there is no latest-build.yml for releases, so we need to get it from the API
18
-export RELEASE_TAG=$(curl -fsSL https://www.swift.org/api/v1/install/releases.json | jq -r '.[-1].tag')
+RELEASE_TAG=$(curl -fsSL https://www.swift.org/api/v1/install/releases.json | jq -r '.[-1].tag')
19
# e.g., "swift-6.1-release"
20
-export RELEASE_BRANCH=$(echo "${SWIFT_TAG}" | tr '[A-Z]' '[a-z]')
+RELEASE_BRANCH=$(echo "${RELEASE_TAG}" | tr '[A-Z]' '[a-z]')
21
22
case "${BUILD_SCHEME}" in
23
release)
0 commit comments