diff --git a/Other/clean.ps1 b/Other/clean.ps1 index aa8707ed..357a55e0 100644 --- a/Other/clean.ps1 +++ b/Other/clean.ps1 @@ -1,5 +1,9 @@ Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent) +if ( Test-Path 'build' ) { + rm -Recurse -Force 'build' +} + if ( Test-Path 'release' ) { rm -Recurse -Force 'release' }