mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
14 lines
377 B
PowerShell
14 lines
377 B
PowerShell
clear-host
|
|
$path_root = git rev-parse --show-toplevel
|
|
|
|
$path_project = join-path $path_root "project"
|
|
$path_build = join-path $path_root "build"
|
|
$path_dependencies = join-path $path_project "dependencies"
|
|
|
|
# if ( Test-Path $path_dependencies ) {
|
|
# Remove-Item $path_dependencies -Recurse
|
|
# }
|
|
if ( Test-Path $path_project ) {
|
|
Remove-Item $path_build -Recurse
|
|
}
|