Ignore:
Timestamp:
2020-12-16T19:34:40+13:00 (3 years ago)
Author:
anupama
Message:

Shifting all the rk3 compile.xml scripts to using ant exec wget from ant get to allow downloading from the new HTTPS://www.greenstone.org

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/ant-scripts/lin64-compile.xml

    r32973 r34606  
    155155        <property name="insert.ant.version" value="1.9.13"/> <!-- value="1.8.2" -->
    156156        <mkdir dir="compiled/packages"/>
    157         <get src="http://www.greenstone.org/gs3files/apache-ant-${insert.ant.version}-bin.tar.gz" dest="compiled/packages/apache-ant-${insert.ant.version}-bin.tar.gz"/>
     157        <!--<get src="http://www.greenstone.org/gs3files/apache-ant-${insert.ant.version}-bin.tar.gz" dest="compiled/packages/apache-ant-${insert.ant.version}-bin.tar.gz"/>-->
     158        <exec executable="wget" failonerror="true">
     159          <arg value="-P"/>
     160          <arg value="compiled/packages"/>
     161          <arg value="--no-check-certificate"/>
     162          <arg value="http://www.greenstone.org/gs3files/apache-ant-${insert.ant.version}-bin.tar.gz"/>
     163        </exec>
    158164        <untar src="compiled/packages/apache-ant-${insert.ant.version}-bin.tar.gz" dest="compiled/packages/" compression="gzip"/>
    159165        <move file="compiled/packages/apache-ant-${insert.ant.version}" tofile="compiled/packages/ant"/>
Note: See TracChangeset for help on using the changeset viewer.