File tree 1 file changed +13
-1
lines changed 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,19 @@ function buildArtifactsLocally(
214
214
expandHermesSourceTarball ( ) ;
215
215
}
216
216
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
218
230
// cp sdks/hermes-engine/utils/*.sh <your_hermes_checkout>/utils/.
219
231
cp (
220
232
`${ reactNativePackagePath } /sdks/hermes-engine/utils/*.sh` ,
You can’t perform that action at this time.
0 commit comments