Skip to content

Commit e05fc23

Browse files
committed
fix: use path for go/bun
1 parent 92e49c0 commit e05fc23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

benchmarks/bun-yoga-jit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { exec } = require("child_process");
33
const path = require("path");
44

55
const forked = exec(
6-
"~/.bun/bin/bun run server-jit.ts",
6+
"bun run server-jit.ts",
77
{ cwd: path.join(__dirname, "..", "other-benchmarks/bun/") },
88
(error, stdout, stderr) => {
99
if (error) {

benchmarks/bun-yoga.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { exec } = require("child_process");
33
const path = require("path");
44

55
const forked = exec(
6-
"~/.bun/bin/bun run server.ts",
6+
"bun run server.ts",
77
{ cwd: path.join(__dirname, "..", "other-benchmarks/bun/") },
88
(error, stdout, stderr) => {
99
if (error) {

benchmarks/go-graphql.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { exec } = require("child_process");
33
const path = require("path");
44

55
const forked = exec(
6-
"/usr/local/go/bin/go run server.go",
6+
"go run server.go",
77
{ cwd: path.join(__dirname, "..", "other-benchmarks/go-gql/") },
88
(error, stdout, stderr) => {
99
if (error) {

0 commit comments

Comments
 (0)