diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-13 12:00:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-13 12:00:30 +0200 |
commit | a906ffae1092f03c992b457e39fe25ab63d28c2a (patch) | |
tree | ded28c3664bc724b564193e746ae132f79316c78 /tester.bat | |
parent | 1945a7ee2d64fffd19a839bbeb619cba2d287837 (diff) |
Only look for SQL files in test*.sql form instead of *.sql
Diffstat (limited to 'tester.bat')
-rw-r--r-- | tester.bat | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,8 +26,8 @@ if "_%3_" == "_Win32_" ( rem Globbing returns files in alphabetic order. rem -if exist *.sql ( - for %%f in (*.sql) do ( +if exist test*.sql ( + for %%f in (test*.sql) do ( call %topdir%\%1-driver.bat %%f if errorlevel 1 goto error ) |