File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,19 @@ function buildArtifactsLocally(
214214 expandHermesSourceTarball ( ) ;
215215 }
216216
217- // need to move the scripts inside the local hermes cloned folder
217+ // need to move the podspec file from hermes-engine to hermes folder
218+ // cp sdks/hermes-engine/hermes-engine.podspec <your_hermes_checkout>/hermes-engine.podspec
219+ cp (
220+ `${ reactNativePackagePath } /sdks/hermes-engine/hermes-engine.podspec` ,
221+ `${ reactNativePackagePath } /sdks/hermes/hermes-engine.podspec` ,
222+ ) ;
223+ // need to move the hermes-utils file from hermes-engine to hermes folder
224+ // cp sdks/hermes-engine/hermes-utils.rb <your_hermes_checkout>/hermes-utils.rb
225+ cp (
226+ `${ reactNativePackagePath } /sdks/hermes-engine/hermes-utils.rb` ,
227+ `${ reactNativePackagePath } /sdks/hermes/hermes-utils.rb` ,
228+ ) ;
229+ // need to move the shell scripts file from hermes-engine to hermes folder
218230 // cp sdks/hermes-engine/utils/*.sh <your_hermes_checkout>/utils/.
219231 cp (
220232 `${ reactNativePackagePath } /sdks/hermes-engine/utils/*.sh` ,
You can’t perform that action at this time.
0 commit comments