mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
11 lines
176 B
PowerShell
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
|