Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 61c8d76

Browse files
committed
fix handing error for clean build where there wasn't previously a build
1 parent 88624bf commit 61c8d76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ param(
88

99
Push-Location $PSScriptRoot/src/code
1010
if ($Clean) {
11-
Remove-Item -Recurse -Path ./bin -Force
12-
Remove-Item -Recurse -Path ./obj -Force
11+
Remove-Item -Recurse -Path ./bin -Force -ErrorAction SilentlyContinue
12+
Remove-Item -Recurse -Path ./obj -Force -ErrorAction SilentlyContinue
1313
}
1414

1515
dotnet build

0 commit comments

Comments
 (0)