Ignore:
Timestamp:
2023-07-25T13:24:36+12:00 (10 months ago)
Author:
kjdon
Message:

add in the --trust-server-cert arg for svn, to stop svn failing on the linux build machine sue to untrusted certificate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/expeditee-release-kits/trunk/kits/rke/ant-scripts/compile.xml

    r37794 r37828  
    22<project name="rke-compile">
    33
     4  <!-- to stop svn failing due to untrusted certificate on linux -->
     5  <property name="global-svn-args" value="--non-interactive --trust-server-cert"/>
    46    <target name="compile">
    57        <!-- checkout expeditee -->
    68        <exec executable="svn">
    7             <arg value="checkout"/>
     9          <arg line="${global-svn-args}"/>
     10          <arg value="checkout"/>
    811            <!--<arg value="MINUSMINUSforce-interactive"/>-->
    912            <arg value="http://svn.expeditee.org/trunk"/>
Note: See TracChangeset for help on using the changeset viewer.