Merge pull request #1430 from pepe/fix-win-clean

Add exists test for dist directory on build command clean
This commit is contained in:
Calvin Rose 2024-03-24 10:49:34 -07:00 committed by GitHub
commit 68a6ed208e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,9 @@ exit /b 0
:CLEAN
del *.exe *.lib *.exp
rd /s /q build
rd /s /q dist
if exist dist (
rd /s /q dist
)
exit /b 0
@rem Run tests