Skip to content

Commit ce364e8

Browse files
committed
fix(build): wrong binary path
1 parent c47e25a commit ce364e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ function swcPlugin() {
8989
function hermesCPlugin({ flags }: { flags?: string[] } = {}) {
9090
const paths = {
9191
win32: 'hermesc.exe',
92-
darwin: 'darwin/hermesc',
93-
linux: 'linux/hermesc',
92+
darwin: 'hermesc',
93+
linux: 'hermesc',
9494
}
9595

9696
if (!(process.platform in paths)) throw new Error(`Unsupported platform: ${process.platform}`)

0 commit comments

Comments
 (0)