Skip to content

Commit 326c73f

Browse files
authored
wasm-run.py: make wasmkit path consistent with build_runtime_with_host_compiler
When passing `--build-runtime-with-host-compiler` there's no such executable `wasmkit-cli` in the host toolchain, where it's named `wasmkit` when installed. Let's make that consistent to make it work in both cases.
1 parent 48fb7cd commit 326c73f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/wasm-run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def run(self, args):
2424
subprocess.check_call(command)
2525

2626
def invocation(self, args):
27-
command = ["wasmkit-cli", "run"]
27+
command = ["wasmkit", "run"]
2828
envs = collect_wasm_env()
2929
for key in envs:
3030
command.append("--env")

0 commit comments

Comments
 (0)