SectrPrototype/scripts/clean.ps1
2024-01-21 11:16:12 -05:00

10 lines
218 B
PowerShell

cls
$path_root = git rev-parse --show-toplevel
$path_code = join-path $path_root 'code'
$path_build = join-path $path_root 'build'
if ( test-path $path_build ) {
Remove-Item $path_build -Verbose -Force -Recurse
}