Fixed phing build to include Documentation/Examples
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@68318 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
0fd77aa397
commit
9b40f3edf5
|
@ -108,6 +108,13 @@
|
||||||
</copy>
|
</copy>
|
||||||
<mkdir dir="./build/Documentation/API" />
|
<mkdir dir="./build/Documentation/API" />
|
||||||
|
|
||||||
|
<copy todir="./build/Documentation/Examples" overwrite="true">
|
||||||
|
<fileset dir="../Documentation/Examples">
|
||||||
|
<include name="**.*" />
|
||||||
|
<exclude name="**/.svn" />
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
|
||||||
<copy todir="./build/Tests" overwrite="true">
|
<copy todir="./build/Tests" overwrite="true">
|
||||||
<fileset dir="../Tests">
|
<fileset dir="../Tests">
|
||||||
<include name="**/*" />
|
<include name="**/*" />
|
||||||
|
@ -210,8 +217,16 @@
|
||||||
<echo msg="Creating documentation release (v${packageVersion})..." />
|
<echo msg="Creating documentation release (v${packageVersion})..." />
|
||||||
<copy todir="./release" overwrite="true">
|
<copy todir="./release" overwrite="true">
|
||||||
<fileset dir="../Documentation">
|
<fileset dir="../Documentation">
|
||||||
<include name="*.doc" />
|
<include name="*.*" />
|
||||||
|
<exclude name="**/.svn" />
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
|
<copy todir="./release/Examples" overwrite="true">
|
||||||
|
<fileset dir="../Documentation/Examples">
|
||||||
|
<include name="**.*" />
|
||||||
|
<exclude name="**/.svn" />
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
</project>
|
</project>
|
Loading…
Reference in New Issue