allows server_test in refine.bat

This commit is contained in:
David Leoni 2014-11-27 19:15:30 +01:00
parent c15f8d1ffd
commit 2740a4a8b5

View File

@ -46,6 +46,9 @@ echo.
echo build ..................... Build OpenRefine echo build ..................... Build OpenRefine
echo run ....................... Run OpenRefine echo run ....................... Run OpenRefine
echo. echo.
echo server_test ............... Run the server tests
echo.
echo clean ..................... Clean compiled classes echo clean ..................... Clean compiled classes
echo distclean ................. Remove all generated files echo distclean ................. Remove all generated files
echo. echo.
@ -163,6 +166,7 @@ rem ----- Respond to the action ------------------------------------------------
set ACTION=%1 set ACTION=%1
if ""%ACTION%"" == ""build"" goto doAnt if ""%ACTION%"" == ""build"" goto doAnt
if ""%ACTION%"" == ""server_test"" goto doAnt
if ""%ACTION%"" == ""clean"" goto doAnt if ""%ACTION%"" == ""clean"" goto doAnt
if ""%ACTION%"" == ""distclean"" goto doAnt if ""%ACTION%"" == ""distclean"" goto doAnt
if ""%ACTION%"" == ""run"" goto doRun if ""%ACTION%"" == ""run"" goto doRun