#**************************************************************************# #** QUADARAX DEPLOYMENT SCRIPTS **# #** File: 201_clean_output.ps1 **# #** Description: PowerShell script library to cleans output directory **# #** Version: 1.0. **# #** Updated: 26.7.2019 **# #**************************************************************************# . ./000_bootstrap.ps1 Write-Host "*** CLEAN - START ***" -ForegroundColor Green Write-host ("Output directory: {0}" -f $projectOutputDir) -ForegroundColor Yellow Remove-Item -Path "$projectOutputDir\*" -Recurse Write-Host "*** CLEAN - END ***" -ForegroundColor Green