You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/11/17 16:49:27 UTC

cvs commit: ant/src/script runant.py

bodewig     2003/11/17 07:49:27

  Modified:    src/script runant.py
  Log:
  Remove badly placed quotes, Submitted by Knut Wannheden
  
  Revision  Changes    Path
  1.6       +2 -2      ant/src/script/runant.py
  
  Index: runant.py
  ===================================================================
  RCS file: /home/cvs/ant/src/script/runant.py,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- runant.py	25 Sep 2003 09:46:38 -0000	1.5
  +++ runant.py	17 Nov 2003 15:49:27 -0000	1.6
  @@ -76,8 +76,8 @@
       CLASSPATH = os.environ['CLASSPATH']
   
   # Builds the commandline
  -cmdline = ('%s %s -classpath \"%s\" \"-Dant.home=%s\" %s ' + \
  -    'org.apache.tools.ant.launch.Launcher %s -lib \"%s\" \"%s\"') \
  +cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \
  +    'org.apache.tools.ant.launch.Launcher %s -lib %s %s') \
        % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \
           CLASSPATH, string.join(sys.argv[1:], ' '))
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org