ugh, forgot to still allow just "refine" to start on Windows

This commit is contained in:
Thad Guidry 2018-11-27 16:38:09 -06:00 committed by GitHub
parent 321d01402c
commit 32b5748411
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 "and <action> is one of
echo. echo.
echo build ..................... Build OpenRefine echo build ..................... Build OpenRefine
echo run ....................... Run OpenRefine echo run ....................... Run OpenRefine (using only "refine" or "./refine" will also start OpenRefine)
echo. echo.
echo test ...................... Run all the tests echo test ...................... Run all the tests
echo server_test ............... Run the server tests echo server_test ............... Run the server tests
@ -193,6 +193,7 @@ if ""%ACTION%"" == ""test"" goto doMvn
if ""%ACTION%"" == ""clean"" goto doMvn if ""%ACTION%"" == ""clean"" goto doMvn
if ""%ACTION%"" == ""distclean"" goto doMvn if ""%ACTION%"" == ""distclean"" goto doMvn
if ""%ACTION%"" == ""run"" goto doRun if ""%ACTION%"" == ""run"" goto doRun
if ""%ACTION%"" == """" goto doRun
%@EndTry% %@EndTry%
:@Catch :@Catch
echo Unknown Refine command called "%1", type "refine /?" for proper usage. echo Unknown Refine command called "%1", type "refine /?" for proper usage.