This commit is contained in:
2025-01-06 11:59:08 -05:00
parent 812cea7e73
commit 4cdff84bb0
3 changed files with 53 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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."
}