Merge pull request #1868 from OpenRefine/thadguidry-patch-2

ugh, forgot to still allow just "refine" to start on Windows
This commit is contained in:
Antonin Delpeuch 2018-11-28 08:49:25 +09:00 committed by GitHub
commit ea22fe91df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ echo.
echo "and <action> is one of
echo.
echo build ..................... Build OpenRefine
echo run ....................... Run OpenRefine
echo run ....................... Run OpenRefine (using only "refine" or "./refine" will also start OpenRefine)
echo.
echo test ...................... Run all the tests
echo server_test ............... Run the server tests
@ -193,6 +193,7 @@ if ""%ACTION%"" == ""test"" goto doMvn
if ""%ACTION%"" == ""clean"" goto doMvn
if ""%ACTION%"" == ""distclean"" goto doMvn
if ""%ACTION%"" == ""run"" goto doRun
if ""%ACTION%"" == """" goto doRun
%@EndTry%
:@Catch
echo Unknown Refine command called "%1", type "refine /?" for proper usage.