Skip to content

Commit

Permalink
checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-caveman2k committed Aug 8, 2015
1 parent 333c36b commit 2b743dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/checksrc.bat
Expand Up @@ -73,8 +73,8 @@ rem ***************************************************************************
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i"
)

rem Check the vtls directory
if exist %SRC_DIR%\vtls (
rem Check the lib\vtls directory
if exist %SRC_DIR%\lib\vtls (
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
)
Expand Down

0 comments on commit 2b743dc

Please sign in to comment.