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 5a315f8 commit a74d930Copy full SHA for a74d930
packages/react-native/sdks/hermes-engine/hermes-utils.rb
@@ -204,7 +204,10 @@ def hermestag_file(react_native_path)
204
end
205
206
def release_tarball_url(version, build_type)
207
- maven_repo_url = "https://repo1.maven.org/maven2"
+ maven_repo_url =
208
+ ENV['ENTERPRISE_REPOSITORY'] != nil && ENV['ENTERPRISE_REPOSITORY'] != "" ?
209
+ ENV['ENTERPRISE_REPOSITORY'] :
210
+ "https://repo1.maven.org/maven2"
211
namespace = "com/facebook/react"
212
# Sample url from Maven:
213
# https://repo1.maven.org/maven2/com/facebook/react/react-native-artifacts/0.71.0/react-native-artifacts-0.71.0-hermes-ios-debug.tar.gz
0 commit comments