File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/host/src/node/cli Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export const command = new Command("vendor-hermes")
55
55
successText : "Removed existing Hermes clone" ,
56
56
failText : ( error ) =>
57
57
`Failed to remove existing Hermes clone: ${ error . message } ` ,
58
- isEnabled : ! silent ,
58
+ isSilent : silent ,
59
59
}
60
60
) ;
61
61
}
@@ -84,7 +84,7 @@ export const command = new Command("vendor-hermes")
84
84
successText : "Cloned custom Hermes" ,
85
85
failText : ( err ) =>
86
86
`Failed to clone custom Hermes: ${ err . message } ` ,
87
- isEnabled : ! silent ,
87
+ isSilent : silent ,
88
88
}
89
89
) ;
90
90
} catch ( error ) {
@@ -117,7 +117,7 @@ export const command = new Command("vendor-hermes")
117
117
successText : "Copied JSI from patched Hermes to React Native" ,
118
118
failText : ( err ) =>
119
119
`Failed to copy JSI from Hermes to React Native: ${ err . message } ` ,
120
- isEnabled : ! silent ,
120
+ isSilent : silent ,
121
121
}
122
122
) ;
123
123
console . log ( hermesPath ) ;
You can’t perform that action at this time.
0 commit comments