Files
netch/Other/clean.ps1
2021-07-20 10:05:31 +08:00

9 lines
156 B
PowerShell

Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
if (Test-Path 'release') {
rm -Recurse -Force 'release'
}
Pop-Location
exit 0