Skip to content

Commit

Permalink
Merge: Add copying imported xsl files when deploying (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sttk committed Feb 26, 2022
2 parents 2a0eed1 + ec1eab5 commit 28948c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/api/xsldoc/xslutil.xsl

This file was deleted.

8 changes: 5 additions & 3 deletions res/ant/build.targets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@
<copy todir="${dir.docs.test}/unit">
<fileset dir="${dir.res.doc}"/>
</copy>
<copy todir="${dir.docs.api}/xsldoc">
<fileset dir="${dir.dist}"/>
</copy>
<antcall target="deploy:xsldoc"/>
<copy todir="${dir.deploy}">
<fileset dir="${dir.docs}"/>
Expand All @@ -171,6 +168,11 @@
</target>

<target name="deploy:xsl:imported" unless="is_application">
<copy todir="${dir.docs.api}/xsldoc" flatten="true">
<fileset dir="${dir.work.xsl}">
<include name="*/dist/*.xsl"/>
</fileset>
</copy>
<copy todir="${dir.test.unit}" flatten="true">
<fileset dir="${dir.work.xsl}">
<include name="*/dist/*.xsl"/>
Expand Down

0 comments on commit 28948c0

Please sign in to comment.