Hi Im looking at building my own custom build file which uses svnant for 
checking out / updating red5 which then builds a deb package using 
checkinstall. Is there a way to ignore all streams and swf directories ? 
Here is my svnant build tags this doesnt seem to ignore anything.

        <path id="svn.classpath">
         <pathelement location="/usr/local/ant/lib/svnjavahl.jar" />
         <pathelement location="/usr/local/ant/lib/svnant.jar" />
         <pathelement location="/usr/local/ant/lib/svnkit.jar" />
         <pathelement location="/usr/local/ant/lib/svnClientAdapter.jar" />
        </path>


        <!-- load the svn task -->
        <typedef resource="org/tigris/subversion/svnant/svnantlib.xml" 
classpath="/usr/local/ant/lib/svnant
.jar" />
        <target name="checkout-red5">
                        <sequential>
                                <svn>
                                  <checkout url="${red5.svnurl}" 
revision="HEAD" destPath="${build.source}/
${red5.localfile}"/>
                                  <propset 
path="${build.source}/${red5.localfile}" name="svn:ignore"
                                           value="*streams*
                                                 swf"
                                  />   
                                </svn>         
                        </sequential>
        </target>


Let me know.

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to