From 8b94eb7b8a7b3ac00f1b08867938e4a92f43295a Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Sun, 26 Sep 2021 21:38:05 +0800 Subject: [PATCH] [Other] Update clean.ps1 --- Other/clean.ps1 | 4 ++++ 1 file changed, 4 insertions(+) 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' }