Ignore:
Timestamp:
2009-11-11T13:55:15+13:00 (14 years ago)
Author:
oranfry
Message:

use the systems own svn client to check things out, not svnant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/mark2/ant-scripts/create-distribution.xml

    r20401 r20928  
    2020    <target name="export-imagemagick-darwin-binaries">
    2121        <delete dir="distributions/web/bin/darwin/imagemagick"/>
    22         <svn>
    23             <export srcurl="${svn.root}/other-projects/trunk/mac-binaries/intel/imagemagick" destPath="distributions/web/bin/darwin/imagemagick"/>
    24         </svn>
     22        <exec executable="svn">
     23            <arg value="export"/>
     24            <arg value="${svn.root}/other-projects/trunk/mac-binaries/intel/imagemagick"/>
     25            <arg value="distributions/web/bin/darwin/imagemagick"/>
     26        </exec>
    2527    </target>
    2628   
    2729    <target name="export-ghostscript-darwin-binaries">
    2830        <delete dir="distributions/web/bin/darwin/ghostscript"/>
    29         <svn>
    30             <export srcurl="${svn.root}/other-projects/trunk/mac-binaries/intel/ghostscript" destPath="distributions/web/bin/darwin/ghostscript"/>
    31         </svn>
     31        <exec executable="svn">
     32            <arg value="export"/>
     33            <arg value="${svn.root}/other-projects/trunk/mac-binaries/intel/ghostscript"/>
     34            <arg value="distributions/web/bin/darwin/ghostscript"/>
     35        </exec>
    3236    </target>
    3337
Note: See TracChangeset for help on using the changeset viewer.