Merge branch 'main' into feature/windows-support

This commit is contained in:
GiGiDKR
2025-08-02 02:31:54 +02:00
committed by GitHub
2 changed files with 4 additions and 8 deletions

View File

@@ -27,6 +27,7 @@ async function spawnClaude(command, options = {}, ws) {
// Add print flag with command if we have a command
if (command && command.trim()) {
// Separate arguments for better cross-platform compatibility
// This prevents issues with spaces and quotes on Windows
args.push('--print');
@@ -387,4 +388,4 @@ function abortClaudeSession(sessionId) {
export {
spawnClaude,
abortClaudeSession
};
};