loop-task 2.0.7 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,7 +25,8 @@ export async function executeCommand(command, commandArgs, cwd, logStream, signa
25
25
  logStream.write(t("loop.exitMarker", { code: 1, duration: formatDuration(0) }));
26
26
  return { exitCode: 1, duration: 0, startedAt, endedAt };
27
27
  }
28
- const child = execa(command, commandArgs, {
28
+ const shellCommand = formatCommandLine(command, commandArgs);
29
+ const child = execa(shellCommand, {
29
30
  stdout: "pipe",
30
31
  stderr: "pipe",
31
32
  stdin: "ignore",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loop-task",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Loop engineering toolkit. Run any command on a cadence, in the background, managed from a terminal board. Schedule tests, builds, syncs, or agent prompts.",
5
5
  "type": "module",
6
6
  "bin": {