2024-01-21 08:16:12 -08:00
|
|
|
cls
|
|
|
|
|
2024-05-16 10:18:27 -07: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 08:16:12 -08:00
|
|
|
|
2024-05-16 10:18:27 -07: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 }
|