You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

antRun.bat 367 B

1234567891011121314151617181920212223
  1. @echo off
  2. REM Copyright (c) 2001 The Apache Software Foundation. All rights
  3. REM reserved.
  4. rem Change drive and directory to %1 (Win9X only for NT/2K use "cd /d")
  5. cd %1
  6. %1\
  7. set ANT_RUN_CMD=%2
  8. shift
  9. shift
  10. set PARAMS=
  11. :loop
  12. if ""%1 == "" goto runCommand
  13. set PARAMS=%PARAMS% %1
  14. shift
  15. goto loop
  16. :runCommand
  17. rem echo %ANT_RUN_CMD% %PARAMS%
  18. %ANT_RUN_CMD% %PARAMS%