@sideboard-ai/cli 0.1.229 → 0.1.230
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -277,7 +277,7 @@ async function main() {
|
|
|
277
277
|
});
|
|
278
278
|
program.command("dev").description("Start/stop per-worktree run script").argument("<thread>", "thread id/ref").argument("[script]", "named run script (default script if omitted)").option("--stop", "stop the run script").action(async (thread, script, opts) => {
|
|
279
279
|
if (opts.stop) {
|
|
280
|
-
orch.stopDev(thread, script);
|
|
280
|
+
await orch.stopDev(thread, script);
|
|
281
281
|
console.log(chalk.yellow(script ? `Stopped ${script}` : "Run scripts stopped"));
|
|
282
282
|
return;
|
|
283
283
|
}
|