Files
netch/Other/clean.ps1
2021-07-16 06:00:50 +08:00

11 lines
176 B
PowerShell

$exec=(Split-Path $MyInvocation.MyCommand.Path -Parent)
Push-Location $exec
if (Test-Path release) {
Remove-Item -Recurse -Force release
}
Pop-Location
exit 0