8 lines
303 B
PowerShell
8 lines
303 B
PowerShell
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
|
|
}
|