[[[ Avoid three "File not found" messages from OS when repro-template.bat is run for the first time and "repos", "wc" and "import-me" subdirectories do not exist. Patch by: Konstantin Kolinko * docs/community-guide/repro-template.bat: Check existence of subdirectories before trying to delete them. ]]] Index: docs/community-guide/repro-template.bat =================================================================== --- docs/community-guide/repro-template.bat (revision 1231819) +++ docs/community-guide/repro-template.bat (working copy) @@ -28,7 +28,9 @@ echo Base url for repo: %URL% :cleanAllDirsAndCreateRepo -rmdir /s /q repos wc import-me +if exist repos rmdir /s /q repos +if exist import-me rmdir /s /q import-me +if exist wc rmdir /s /q wc %SVNADMIN% create repos :prepareGreekTree