Skip to content

Commit

Permalink
[RN][General] Fix boost link (facebook#42175)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi authored and yayvery committed Jan 11, 2024
1 parent df6cea7 commit 7b16ac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReactAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ task createNativeDepsDirectories {
}

task downloadBoost(dependsOn: createNativeDepsDirectories, type: Download) {
src("https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}${boostExtension}")
src("https://archives.boost.io/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}${boostExtension}")
onlyIfModified(true)
overwrite(false)
retries(5)
Expand Down
2 changes: 1 addition & 1 deletion third-party-podspecs/boost.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |spec|
spec.summary = 'Boost provides free peer-reviewed portable C++ source libraries.'
spec.authors = 'Rene Rivera'
# PodToBuild does not support tar bz2 compression so we use tar.gz instead.
spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.gz',
spec.source = { :http => 'https://archives.boost.io/release/1.81.0/source/boost_1_81_0.tar.gz',
:sha256 => '205666dea9f6a7cfed87c7a6dfbeb52a2c1b9de55712c9c1a87735d7181452b6' }

# Pinning to the same version as React.podspec.
Expand Down

0 comments on commit 7b16ac1

Please sign in to comment.