Skip to content

Commit

Permalink
Fix hermes-engine in Nightlies
Browse files Browse the repository at this point in the history
Summary:
With commit [332be0f](332be0f) nightlies were broken due to a wrong update with the method we need to use to download hermes.

This change fixes that issue

## Changelog:
[Internal] - Fix hermes-engine download in Nightlies

Reviewed By: cortinico

Differential Revision: D46800717

fbshipit-source-id: 62ce94b980110f46337ce2520fa3c9fbcfe856cc
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Jun 16, 2023
1 parent 84fc79f commit 71936fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-native/sdks/hermes-engine/hermes-utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def download_hermes_tarball(react_native_path, tarball_url, version, configurati
# Returns: the path to the downloaded Hermes tarball
def download_nightly_hermes(react_native_path, version)
tarball_url = nightly_tarball_url(version)
return download_stable_hermes(react_native_path, tarball_url, version, nil)
return download_hermes_tarball(react_native_path, tarball_url, version, nil)
end

def nightly_tarball_url(version)
Expand Down

0 comments on commit 71936fc

Please sign in to comment.