You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/10/08 10:00:20 UTC

svn commit: r1395497 - in /incubator/easyant/core/trunk/bin: easyant.bat easyantDebug.bat

Author: jlboudart
Date: Mon Oct  8 10:00:20 2012
New Revision: 1395497

URL: http://svn.apache.org/viewvc?rev=1395497&view=rev
Log:
Fix windows issues with easyant batch script

Modified:
    incubator/easyant/core/trunk/bin/easyant.bat
    incubator/easyant/core/trunk/bin/easyantDebug.bat

Modified: incubator/easyant/core/trunk/bin/easyant.bat
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/bin/easyant.bat?rev=1395497&r1=1395496&r2=1395497&view=diff
==============================================================================
--- incubator/easyant/core/trunk/bin/easyant.bat (original)
+++ incubator/easyant/core/trunk/bin/easyant.bat Mon Oct  8 10:00:20 2012
@@ -33,7 +33,7 @@ goto end
 
 :run
 rem set the default parameters for easyant
-set EASYANT_ARGS=-lib "%EASYANT_HOME%\lib" -Dbasedir=. -main org.apache.easyant.core.EasyAntMain -config-file %EASYANT_HOME%/easyant-conf.xml -Deasyant.home=%EASYANT_HOME% %EASYANT_ARGS%
+set EASYANT_ARGS=-lib "%EASYANT_HOME%\lib" -Dbasedir=. -main org.apache.easyant.core.EasyAntMain -configfile %EASYANT_HOME%/easyant-conf.xml -Deasyant.home=%EASYANT_HOME% %EASYANT_ARGS%
 
 
 rem This part is fully inspirated by ant's script with some easyant customisation

Modified: incubator/easyant/core/trunk/bin/easyantDebug.bat
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/bin/easyantDebug.bat?rev=1395497&r1=1395496&r2=1395497&view=diff
==============================================================================
--- incubator/easyant/core/trunk/bin/easyantDebug.bat (original)
+++ incubator/easyant/core/trunk/bin/easyantDebug.bat Mon Oct  8 10:00:20 2012
@@ -15,7 +15,8 @@ REM  WITHOUT WARRANTIES OR CONDITIONS OF
 REM  See the License for the specific language governing permissions and
 REM  limitations under the License.
 
-set EASYANT_OPTS="%EASYANT_OPTS% -Xdebug -Xrunjdwp:transport=dt_socket,address=9000,server=y,suspend=y"
+setlocal
+set EASYANT_OPTS=%EASYANT_OPTS% -Xdebug -Xrunjdwp:transport=dt_socket,address=9000,server=y,suspend=y
 
 easyant.bat %*