https://issues.apache.org/bugzilla/show_bug.cgi?id=48183

           Summary: ant doesn't create build directory in download_jars
                    task
           Product: JMeter
           Version: unspecified
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: Main
        AssignedTo: jmeter-dev@jakarta.apache.org
        ReportedBy: briane...@yahoo.com


On an initial svn checkout 'ant download_jars' fails because 'build' does not
exist.  The following is a patch, released by me under the ASF 2.0 License.

Index: build.xml
===================================================================
--- build.xml   (revision 835108)
+++ build.xml   (working copy)
@@ -1916,6 +1916,7 @@
        <!-- Download a jar file and check its hash; if correct, move to
correct directory -->
        <target name="_get_jarfile" if="_get_jarfile" unless="file.exists">
         <echo message="Fetching: ${path}/${jar}" level="info"/>
+        <mkdir dir="${build.dir}" />
         <get src="${loc}/${jar}" 
              dest="${build.dir}/${jar}" 
              usetimestamp="false" ignoreerrors="false"/>

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org

Reply via email to