lastwebnovel-app/scripts/fix_remaining.ps1
2026-04-11 22:55:16 +02:00

10 lines
543 B
PowerShell

# Remove the duplicate dimensional-keeper folder
Remove-Item -Path "c:\Users\a.dchar\Documents\privé\lab\lastwebnovel\content\novels\dimensional-keeper" -Recurse -Force
Write-Host "Removed duplicate: dimensional-keeper"
# Rename 'Infinite Mage [Remake]' to 'infinite-mage-remake'
Rename-Item -Path "c:\Users\a.dchar\Documents\privé\lab\lastwebnovel\content\novels\Infinite Mage [Remake]" -NewName "infinite-mage-remake" -Force
Write-Host "Renamed: 'Infinite Mage [Remake]' -> 'infinite-mage-remake'"
Write-Host "All corrections complete!"