diff --git a/src/cli/handlers/cloud.ts b/src/cli/handlers/cloud.ts index 54bca2cb1..ab9cf6f88 100644 --- a/src/cli/handlers/cloud.ts +++ b/src/cli/handlers/cloud.ts @@ -232,6 +232,9 @@ function getCloudRawArgs(): string[] { async function runCsCloud(args: string[]): Promise { const bin = await ensureCsCloud() + // Print the exact command being executed for debugging + console.error(`[DEBUG] Executing: ${bin} ${args.join(" ")}`) + // Close stdin to prevent blocking, inherit stdout/stderr const child = spawn(bin, args, { stdio: ["ignore", "inherit", "inherit"],