@tenux/cli 0.0.6 → 0.0.7
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.
|
@@ -215,9 +215,9 @@ async function handleClaudeQuery(command, supabase) {
|
|
|
215
215
|
const proc = spawn(claudeBin, args, {
|
|
216
216
|
cwd,
|
|
217
217
|
shell: isWindows,
|
|
218
|
-
env: { ...process.env },
|
|
219
|
-
// inherits Claude auth from ~/.claude
|
|
220
218
|
stdio: ["pipe", "pipe", "pipe"]
|
|
219
|
+
// env is omitted — Node inherits parent process.env automatically.
|
|
220
|
+
// Spreading env on Windows can lose system variables and cause ENOENT.
|
|
221
221
|
});
|
|
222
222
|
let seq = 0;
|
|
223
223
|
let capturedSessionId = null;
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED