aboutsummaryrefslogtreecommitdiff
path: root/build/tools/jakarta-ant-1.5.1/bin/antRun.bat
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-01-20 13:26:03 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-01-20 13:26:03 +0000
commit442426b3c167d0330a76702ebdbcf927be07aeaf (patch)
tree58f5351ddacd97e3c92fc9f6e9e927b496e3d3ed /build/tools/jakarta-ant-1.5.1/bin/antRun.bat
parentbba05b8162aeca69cf6107af16fa13546d8b1078 (diff)
downloadmoa-id-spss-442426b3c167d0330a76702ebdbcf927be07aeaf.tar.gz
moa-id-spss-442426b3c167d0330a76702ebdbcf927be07aeaf.tar.bz2
moa-id-spss-442426b3c167d0330a76702ebdbcf927be07aeaf.zip
This commit was manufactured by cvs2svn to create tagtags/Build-SPSS-1_2_0_D03
'Build-SPSS-1_2_0_D03'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build-SPSS-1_2_0_D03@233 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'build/tools/jakarta-ant-1.5.1/bin/antRun.bat')
-rw-r--r--build/tools/jakarta-ant-1.5.1/bin/antRun.bat31
1 files changed, 0 insertions, 31 deletions
diff --git a/build/tools/jakarta-ant-1.5.1/bin/antRun.bat b/build/tools/jakarta-ant-1.5.1/bin/antRun.bat
deleted file mode 100644
index e8125f660..000000000
--- a/build/tools/jakarta-ant-1.5.1/bin/antRun.bat
+++ /dev/null
@@ -1,31 +0,0 @@
-@echo off
-
-REM Copyright (c) 2001-2002 The Apache Software Foundation. All rights
-REM reserved.
-
-if "%OS%"=="Windows_NT" @setlocal
-
-if ""%1""=="""" goto runCommand
-
-rem Change drive and directory to %1
-if "%OS%"=="Windows_NT" cd /d ""%1""
-if not "%OS%"=="Windows_NT" cd ""%1""
-shift
-
-rem Slurp the command line arguments. This loop allows for an unlimited number
-rem of agruments (up to the command line limit, anyway).
-set ANT_RUN_CMD=%1
-if ""%1""=="""" goto runCommand
-shift
-:loop
-if ""%1""=="""" goto runCommand
-set ANT_RUN_CMD=%ANT_RUN_CMD% %1
-shift
-goto loop
-
-:runCommand
-rem echo %ANT_RUN_CMD%
-%ANT_RUN_CMD%
-
-if "%OS%"=="Windows_NT" @endlocal
-