mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-12 23:31:38 -07:00
11 lines
301 B
PowerShell
11 lines
301 B
PowerShell
Clear-Host
|
|
$path_root = git rev-parse --show-toplevel
|
|
$build_dir = Join-Path $path_root 'build'
|
|
|
|
if (Test-Path $build_dir) {
|
|
Get-ChildItem -Path $build_dir -Recurse | Remove-Item -Force -Recurse
|
|
Write-Host "Build directory cleaned."
|
|
} else {
|
|
Write-Host "Build directory does not exist."
|
|
}
|