Skip to content

Commit

Permalink
Fix bench
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 19, 2025
1 parent b936364 commit 036513e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/setup-bench.mts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const pnpm = await which('pnpm');
await buildKrausestDeps({
roots: { benchmark: EXPERIMENT_DIRS.bench, workspace: WORKSPACE_ROOT },
});
await $`rm -r ${EXPERIMENT_DIRS.bench}/node_modules`;
await $`rm -rf ${EXPERIMENT_DIRS.bench}/node_modules`;
await $({ cwd: EXPERIMENT_DIRS.bench })`${pnpm} install`;
await $({ cwd: EXPERIMENT_DIRS.bench })`${pnpm} vite build`;
}
Expand Down Expand Up @@ -161,7 +161,7 @@ console.info({
roots: { benchmark: CONTROL_DIRS.bench, workspace: CONTROL_DIRS.repo },
});

await $`rm -r ${CONTROL_DIRS.bench}/node_modules`;
await $`rm -rf ${CONTROL_DIRS.bench}/node_modules`;
await $({ cwd: CONTROL_DIRS.bench })`${pnpm} install`;
await $({ cwd: CONTROL_DIRS.bench })`${pnpm} vite build`;
}
Expand Down

0 comments on commit 036513e

Please sign in to comment.