Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 98826 invoked from network); 17 Nov 2003 15:49:30 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 17 Nov 2003 15:49:30 -0000 Received: (qmail 40513 invoked by uid 500); 17 Nov 2003 15:49:24 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 40317 invoked by uid 500); 17 Nov 2003 15:49:22 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 40304 invoked by uid 500); 17 Nov 2003 15:49:22 -0000 Received: (qmail 40301 invoked from network); 17 Nov 2003 15:49:22 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 17 Nov 2003 15:49:22 -0000 Received: (qmail 98783 invoked by uid 1146); 17 Nov 2003 15:49:27 -0000 Date: 17 Nov 2003 15:49:27 -0000 Message-ID: <20031117154927.98782.qmail@minotaur.apache.org> From: bodewig@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/script runant.py X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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