You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add || true to all prepare commands in run.sh
The pnpm prepare command failed with a non-zero exit code, which caused
hyperfine to abort the entire benchmark suite. Only npm, nx, turbo, and
node had '|| true' appended to their prepare commands.
This adds '|| true' to ALL prepare commands (yarn, berry, zpm, pnpm,
vlt, bun, deno, vp) so that a transient install failure during the
prepare step doesn't kill the entire task runner benchmark.
hyperfine's --ignore-failure only applies to the measured command, not
to --prepare commands, so || true is needed to prevent suite-wide
failures from transient install issues.
0 commit comments