updates to scripts

This commit is contained in:
2024-07-01 00:39:41 -04:00
parent 53d86daf0a
commit b24699407e
5 changed files with 87 additions and 24 deletions

9
scripts/clean.ps1 Normal file
View File

@@ -0,0 +1,9 @@
$path_root = git rev-parse --show-toplevel
$path_backend = join-path $path_root 'backend'
$path_build = join-path $path_root 'build'
$path_examples = join-path $path_root 'examples'
$path_scripts = join-path $path_root 'scripts'
$path_thirdparty = join-path $path_root 'thirdparty'
if ( test-path $path_build ) { Remove-Item $path_build -Verbose -Force -Recurse }
# if ( test-path $path_thirdparty) { Remove-Item $path_thirdparty -Verbose -Force -Recurse }