We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b290c5 commit c6d5624Copy full SHA for c6d5624
build/Clean.ps1
@@ -1,7 +1,9 @@
1
$root_dir = Resolve-Path "$PSScriptRoot\..\"
2
Push-Location $root_dir
3
4
-Remove-Item $root_dir\artifacts -Force -Recurse
+If (Test-Path $root_dir\artifacts) {
5
+ Remove-Item $root_dir\artifacts -Force -Recurse
6
+}
7
8
Get-ChildItem $root_dir\src -Include bin,obj -Recurse |
9
ForEach-Object ($_) {
0 commit comments