Browse Source

Remove badly placed quotes, Submitted by Knut Wannheden

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275637 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 21 years ago
parent
commit
99ac2c7d14
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/script/runant.py

+ 2
- 2
src/script/runant.py View File

@@ -76,8 +76,8 @@ if os.environ.has_key('CLASSPATH'):
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:], ' '))



Loading…
Cancel
Save