Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e54502 commit 29f4822Copy full SHA for 29f4822
build.xml
@@ -6,8 +6,10 @@
6
<target name="create-zip" depends="init">
7
<antcall target="prezip"/>
8
<zip destfile="${dest.dir}/${ant.project.name}.zip" whenempty="fail" defaultexcludes="true">
9
- <fileset dir="." includes="manifest, doc.html"/>
10
- <zipfileset dir="src" includes="*.py"/>
+ <fileset dir="." includes="manifest, Dockerfile, LICENSE"/>
+ <fileset dir="docs/v2" includes="doc.html"/>
11
+ <!-- if you are iterating in the module integrator you will need to include the source files in the module zip -->
12
+ <!-- zipfileset dir="src" includes="*.py"/-->
13
</zip>
14
<antcall target="postzip"/>
15
</target>
0 commit comments