Files
SuperCharged-Claude-Code-Up…/install-windows.ps1
uroma f41e443574 Fix Copy-DirectoryContent for proper nested directory handling
Changed from iterating Get-ChildItem to using Copy-Item with wildcard
This ensures proper recursive copying of all files and subdirectories

Before: Get-ChildItem | ForEach-Object { Copy-Item ... }
After: Copy-Item -Path "$Source\*" -Destination $Destination -Recurse

This prevents issues where nested directories aren't copied correctly.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-22 19:16:52 +00:00

20 KiB