@lifeaitools/clauth 1.5.50 → 1.5.51
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/cli/commands/serve.js +1 -1
- package/package.json +1 -1
package/cli/commands/serve.js
CHANGED
|
@@ -5274,7 +5274,7 @@ async function startChitchatSession(name) {
|
|
|
5274
5274
|
const banner = `echo. && echo [rdc:collab] Session ready: ${session_id} && echo Type: /rdc:collab --session ${session_id} && echo.`;
|
|
5275
5275
|
const child = spawnProc('wt.exe', [
|
|
5276
5276
|
'new-tab', '--title', `rdc:collab ${name}`,
|
|
5277
|
-
'cmd', '/k', `cd /d ${CHITCHAT_CWD} && ${banner} && ${binary}`
|
|
5277
|
+
'--', 'cmd', '/k', `cd /d ${CHITCHAT_CWD} && ${banner} && ${binary} || pause`
|
|
5278
5278
|
], { detached: true, stdio: 'ignore', shell: false });
|
|
5279
5279
|
child.unref();
|
|
5280
5280
|
console.log(`[ClaudeAItoCLI] spawned terminal for session ${session_id} binary=${binary}`);
|