Fix sqlite benchmark setup when sh isn't bash (#9303)

Prevent deno from making noisy output

Co-authored-by: Robert Burke <robert.burke@ltcm.lol>
This commit is contained in:
Robert Burke
2024-03-07 17:32:23 -08:00
committed by GitHub
parent ea5354fc85
commit 7fc97fcf9c

View File

@@ -7,8 +7,8 @@
"build": "exit 0",
"bench:bun": "$BUN bun.js",
"bench:node": "$NODE node.mjs",
"deps": "npm install && sh src/download.sh",
"bench:deno": "$DENO run -A --unstable deno.js",
"deps": "npm install && bash src/download.sh",
"bench:deno": "$DENO run -A --unstable-ffi deno.js",
"bench": "bun run bench:bun && bun run bench:node && bun run bench:deno"
}
}