201_clean_output.ps1 809 B

123456789101112131415
  1. #**************************************************************************#
  2. #** QUADARAX DEPLOYMENT SCRIPTS **#
  3. #** File: 201_clean_output.ps1 **#
  4. #** Description: PowerShell script library to cleans output directory **#
  5. #** Version: 1.0. **#
  6. #** Updated: 26.7.2019 **#
  7. #**************************************************************************#
  8. . ./000_bootstrap.ps1
  9. Write-Host "*** CLEAN - START ***" -ForegroundColor Green
  10. Write-host ("Output directory: {0}" -f $projectOutputDir) -ForegroundColor Yellow
  11. Remove-Item -Path "$projectOutputDir\*" -Recurse
  12. Write-Host "*** CLEAN - END ***" -ForegroundColor Green