File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
scripts/release-testing/utils Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ async function artifactURLForRNTesterAPK(
210210}
211211
212212async function artifactURLForHermesRNTesterApp ( ) /*: Promise<string> */ {
213- return getArtifactURL ( 'RNTesterApp-NewArch-Hermes- Debug' ) ;
213+ return getArtifactURL ( 'RNTesterApp-NewArch-Debug' ) ;
214214}
215215
216216async function artifactURLForMavenLocal ( ) /*: Promise<string> */ {
@@ -223,7 +223,9 @@ async function getArtifactURL(
223223 const filteredUrls = artifacts . artifacts . filter ( a => a . name === artifactName ) ;
224224
225225 if ( filteredUrls . length === 0 ) {
226- console . error ( `No artifact found with name ${ artifactName } ` ) ;
226+ console . error (
227+ `No artifact found with name ${ artifactName } .\n\nAvailable artifacts: ${ artifacts . artifacts . map ( a => a . name ) . join ( ' ' ) } ` ,
228+ ) ;
227229 process . exit ( 1 ) ;
228230 }
229231 return filteredUrls [ 0 ] . archive_download_url ;
You can’t perform that action at this time.
0 commit comments