HandmadeHero/scripts/clean.ps1
2023-09-08 12:42:24 -04:00

8 lines
208 B
PowerShell

clear-host
$path_root = git rev-parse --show-toplevel
$path_project = join-path $path_root "project"
$path_dependencies = join-path $path_project "dependencies"
Remove-Item $path_dependencies -Recurse