Skip to content

Commit 04ce2a2

Browse files
Merge pull request #240 from lightpanda-io/makefile_fix
Fix Mafefile jsruntime name for run/benchmark commands
2 parents a820cf4 + 4dd8f30 commit 04ce2a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ build-release:
104104
## Run the benchmark in release-safe mode
105105
run: build-release
106106
@printf "\e[36mRunning...\e[0m\n"
107-
@./zig-out/bin/jsruntime-bench || (printf "\e[33mRun ERROR\e[0m\n"; exit 1;)
107+
@./zig-out/bin/zig-js-runtime-bench || (printf "\e[33mRun ERROR\e[0m\n"; exit 1;)
108108
@printf "\e[33mRun OK\e[0m\n"
109109

110110
## Run a JS shell in release-safe mode
@@ -125,4 +125,4 @@ ifneq ($(shell $(git_clean)), 0)
125125
$(error repo is not clean)
126126
endif
127127
@mkdir -p benchmarks && \
128-
./zig-out/bin/jsruntime-bench > benchmarks/$(shell $(git_last_commit_full))_$(shell $(git_current_branch)).txt
128+
./zig-out/bin/zig-js-runtime-bench > benchmarks/$(shell $(git_last_commit_full))_$(shell $(git_current_branch)).txt

0 commit comments

Comments
 (0)