mirror of
https://github.com/janet-lang/janet
synced 2024-12-26 00:10:27 +00:00
Merge pull request #1430 from pepe/fix-win-clean
Add exists test for dist directory on build command clean
This commit is contained in:
commit
68a6ed208e
@ -91,7 +91,9 @@ exit /b 0
|
|||||||
:CLEAN
|
:CLEAN
|
||||||
del *.exe *.lib *.exp
|
del *.exe *.lib *.exp
|
||||||
rd /s /q build
|
rd /s /q build
|
||||||
rd /s /q dist
|
if exist dist (
|
||||||
|
rd /s /q dist
|
||||||
|
)
|
||||||
exit /b 0
|
exit /b 0
|
||||||
|
|
||||||
@rem Run tests
|
@rem Run tests
|
||||||
|
Loading…
Reference in New Issue
Block a user