We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44744b2 commit 4089383Copy full SHA for 4089383
1 file changed
packages/react-native/sdks/hermes-engine/hermes-engine.podspec
@@ -20,7 +20,13 @@ end
20
21
# package.json
22
package = JSON.parse(File.read(File.join(react_native_path, "package.json")))
23
-version = package['version']
+
24
+# We want to use the version without the -wanderlog.X suffix:
25
+# For example, if the version is 0.81.5-wanderlog.1, we want to use `0.81.5`.
26
+#
27
+# This is because we haven't modified Hermes, and it's much faster to just use
28
+# the prebuilt original version.
29
+version = package['version'].split('-').first
30
31
source_type = hermes_source_type(version, react_native_path)
32
source = podspec_source(source_type, version, react_native_path)
0 commit comments