Skip to content

Commit

Permalink
Merge branch 'feature/timekeeper' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Jan 1, 2024
2 parents bf2c99f + b07de6e commit ad70de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/timekeeper/src/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const runner = async (p, options) => {

console.info(`[Timekeeper] executing...`.green);

await exec(`bash -c "node '${outputDir}${path.sep}${path.basename(p)}'"`).then(({ stdout, stderr }) => {
await exec(`node "${outputDir}${path.sep}${path.basename(p)}"`).then(({ stdout, stderr }) => {
if (stdout) console.log(stdout);
if (stderr) console.error(stderr.red);
});
Expand Down

0 comments on commit ad70de5

Please sign in to comment.