From: <tho...@us...> - 2014-01-15 17:55:03
|
Revision: 7809 http://bigdata.svn.sourceforge.net/bigdata/?rev=7809&view=rev Author: thompsonbry Date: 2014-01-15 17:54:57 +0000 (Wed, 15 Jan 2014) Log Message: ----------- Bug fix to build.xml to correctly remove the sparql-* files (and implicitly remove empty directories remaining once those files are removed) after a CI run. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/build.xml Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-01-15 17:20:04 UTC (rev 7808) +++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-01-15 17:54:57 UTC (rev 7809) @@ -2313,13 +2313,18 @@ </target> -<target name="clean-sparql-test-suite" description="delete the files unpacked by the Sesame SPARQL test suite."> -<echo>"clearing: ${java.io.tmpdir}/sparql-*"</echo> -<delete verbose="true"> - <dirset dir="${java.io.tmpdir}" includes="sparql-*" /> -</delete> -</target> - + <target name="clean-sparql-test-suite" + description="Delete the files unpacked by the Sesame SPARQL test suite."> + <echo>"clearing: ${java.io.tmpdir}/sparql-*"</echo> + <delete verbose="true" includeemptydirs="true"> + <fileset dir="${java.io.tmpdir}"> + <patternset> + <include name="sparql-*/**"/> + </patternset> + </fileset> + </delete> + </target> + <!-- --> <!-- SESAME SERVER TARGETS --> <!-- --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |