Write-Host "Cleaning build files..." -ForegroundColor Red if (Test-Path "build") { Remove-Item -Path "build" -Recurse -Force Write-Host "Build folder successfully removed." -ForegroundColor Green } else { Write-Host "Nothing to clean. Build folder does not exist." -ForegroundColor Yellow }