Skip to content

Commit 555c77b

Browse files
committed
build.bat: Only delete Artifacts folder if it exists
Mute error
1 parent 4d2530f commit 555c77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Build/build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22
SET ROOT=%~dp0..
3-
rmdir /Q /S %ROOT%\Artifacts
3+
if exist %ROOT%\Artifacts rmdir /Q /S %ROOT%\Artifacts
44

55
call powershell -NoProfile %ROOT%\Build\UpdateAssemblyInfo.ps1
66
call powershell -ExecutionPolicy Bypass -NoProfile -File %ROOT%\UnitsNet\Scripts\GenerateUnits.ps1

0 commit comments

Comments
 (0)