sandboxbox 3.0.5 → 3.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -68,7 +68,7 @@ export async function claudeCommand(projectDir, prompt) {
68
68
  const proc = spawn('sh', ['-c', `cd "${join(sandboxDir, 'workspace')}" && claude ${claudeArgs.join(' ')}`], {
69
69
  env: env, // Use the environment directly without modification
70
70
  stdio: ['pipe', 'pipe', 'pipe'],
71
- shell: false, // Don't use nested shell
71
+ shell: true, // Use shell for proper directory handling
72
72
  detached: false
73
73
  });
74
74