Initial stuff
This commit is contained in:
9
scripts/clean.ps1
Normal file
9
scripts/clean.ps1
Normal file
@ -0,0 +1,9 @@
|
||||
cls
|
||||
|
||||
$path_root = git rev-parse --show-toplevel
|
||||
$path_code = join-path $path_root 'code'
|
||||
$path_build = join-path $path_root 'build'
|
||||
|
||||
if ( test-path $path_build ) {
|
||||
Remove-Item $path_build -Verbose -Force -Recurse
|
||||
}
|
Reference in New Issue
Block a user