Skip to content

Commit ea63b61

Browse files
cipolleschiyayvery
authored andcommitted
[RN][General] Fix boost link (facebook#42175)
1 parent df6cea7 commit ea63b61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ReactAndroid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ task createNativeDepsDirectories {
249249
}
250250

251251
task downloadBoost(dependsOn: createNativeDepsDirectories, type: Download) {
252-
src("https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}${boostExtension}")
252+
src("https://archives.boost.io/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}.tar.gz")
253253
onlyIfModified(true)
254254
overwrite(false)
255255
retries(5)

third-party-podspecs/boost.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |spec|
1111
spec.summary = 'Boost provides free peer-reviewed portable C++ source libraries.'
1212
spec.authors = 'Rene Rivera'
1313
# PodToBuild does not support tar bz2 compression so we use tar.gz instead.
14-
spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.gz',
14+
spec.source = { :http => 'https://archives.boost.io/release/1.81.0/source/boost_1_81_0.tar.gz',
1515
:sha256 => '205666dea9f6a7cfed87c7a6dfbeb52a2c1b9de55712c9c1a87735d7181452b6' }
1616

1717
# Pinning to the same version as React.podspec.

0 commit comments

Comments
 (0)