diff --git a/src/bin/antRun.bat b/src/bin/antRun.bat index 08e03519c..fe0d1ceeb 100755 --- a/src/bin/antRun.bat +++ b/src/bin/antRun.bat @@ -5,5 +5,14 @@ set ANT_RUN_CMD=%2 shift shift -%ANT_RUN_CMD% %1 %2 %3 %4 %5 %6 %7 %8 %9 +set PARAMS= +:loop +if "%1" == "" goto runCommand +set PARAMS=%PARAMS% %1 +shift +goto loop + +:runCommand +echo %ANT_RUN_CMD% %PARAMS% +%ANT_RUN_CMD% %PARAMS%