From cca3aab98948620acfe4f0efe978ea4054ab3a9b Mon Sep 17 00:00:00 2001 From: Alex Converse Date: Thu, 14 Sep 2023 15:42:59 -0700 Subject: [PATCH] Revert "use boost tar on linux too" Linux CI seems to use the tar after the commit in question, which fails the build This reverts commit b98974f85f713956acd5aa1fd8afd48c34ecfa6d. --- ReactAndroid/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/build.gradle b/ReactAndroid/build.gradle index 62c1ff11662023..3e3cd0c9da8c30 100644 --- a/ReactAndroid/build.gradle +++ b/ReactAndroid/build.gradle @@ -37,7 +37,7 @@ def thirdPartyNdkDir = new File("$buildDir/third-party-ndk") def reactNativeRootDir = projectDir.parent // NOTE(flewp): We want CI machines to also expand a tarball instead of a zip. -def needsBoostTar = Os.isFamily(Os.FAMILY_MAC) || Os.isFamily(Os.FAMILY_UNIX) || System.getenv("CI") +def needsBoostTar = Os.isFamily(Os.FAMILY_MAC) || System.getenv("CI") def boostExtension = needsBoostTar ? ".tar.gz" : ".zip" // We put the publishing version from gradle.properties inside ext. so other