File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ installing engines to make eshost automatically find the installed engines.
34
34
| [ Chakra] [ ] | ` ch ` , ` chakra ` | ✅ | | ✅ | ✅ | ✅ |
35
35
| [ engine262] [ ] | ` engine262 ` | ✅ | ✅ | ✅ | ✅ | ✅ |
36
36
| [ GraalJS] [ ] | ` graaljs ` | ✅ | | ✅ | | ✅ |
37
- | [ Hermes] [ ] | ` hermes ` , ` hermes-repl ` | ✅ | | ✅ | | ✅ |
37
+ | [ Hermes] [ ] | ` hermes ` | ✅ | | ✅ | | ✅ |
38
38
| [ JavaScriptCore] [ ] | ` jsc ` , ` javascriptcore ` | ✅ | ✅ | ✅ | ✅ | ✅ |
39
39
| [ QuickJS] [ ] | ` quickjs ` , ` quickjs-run-test262 ` | | | ✅ | | |
40
40
| [ SpiderMonkey] [ ] | ` sm ` , ` spidermonkey ` | ✅ | ✅ | ✅ | ✅ | ✅ |
Original file line number Diff line number Diff line change @@ -50,12 +50,10 @@ class HermesInstaller extends Installer {
50
50
if ( platform . startsWith ( 'win' ) ) {
51
51
await this . registerAssets ( '*.dll' ) ;
52
52
const hermes = await this . registerAsset ( 'hermes.exe' ) ;
53
- const hermesRepl = await this . registerAsset ( 'hermes-repl.exe' ) ;
54
53
this . binPath = await this . registerScript ( 'hermes' , `"${ hermes } "` ) ;
55
- await this . registerScript ( 'hermes-repl' , `"${ hermesRepl } "` ) ;
56
54
} else {
57
55
this . binPath = await this . registerBinary ( 'hermes' ) ;
58
- await this . registerBinary ( 'hermes-repl ' ) ;
56
+ await this . registerBinary ( 'hermes' ) ;
59
57
}
60
58
}
61
59
You can’t perform that action at this time.
0 commit comments