2024-01-21 11:16:12 -05:00
|
|
|
cls
|
|
|
|
|
2024-05-16 13:18:27 -04:00
|
|
|
$path_root = git rev-parse --show-toplevel
|
|
|
|
$path_code = join-path $path_root 'code'
|
|
|
|
$path_code_compiler_staged = Join-Path $path_root 'code_compiler_staged'
|
|
|
|
$path_build = join-path $path_root 'build'
|
2024-01-21 11:16:12 -05:00
|
|
|
|
2024-05-16 13:18:27 -04:00
|
|
|
if ( test-path $path_build ) { Remove-Item $path_build -Verbose -Force -Recurse }
|
|
|
|
if ( test-path $path_code_compiler_staged) { Remove-Item $path_code_compiler_staged -Verbose -Force -Recurse }
|