sandboxbox 3.0.21 → 3.0.22
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 +1 -1
- package/utils/sandbox.js +1 -1
package/package.json
CHANGED
package/utils/sandbox.js
CHANGED
|
@@ -180,7 +180,7 @@ export function createSandbox(projectDir) {
|
|
|
180
180
|
const hostFile = join(hostClaudeDir, file);
|
|
181
181
|
const sandboxFile = join(sandboxClaudeDir, file);
|
|
182
182
|
|
|
183
|
-
if (existsSync(hostFile)) {
|
|
183
|
+
if (existsSync(hostFile) && hostFile !== sandboxFile) {
|
|
184
184
|
cpSync(hostFile, sandboxFile);
|
|
185
185
|
if (VERBOSE_OUTPUT && file === 'settings.json') {
|
|
186
186
|
// Show hook information for copied settings
|