Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
# Instead, copy it to local.build.properties and edit that.
#
project.app=EditionExample
build.dir=build
dist.dir=dist
7 changes: 1 addition & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,8 @@
<property name="project.name" value="${package(name)}"/>

<target name="xar">
<mkdir dir="${build.dir}"/>
<mkdir dir="${dist.dir}"/>
<zip basedir="." destfile="${dist.dir}/${project.app}-${project.version}.xar" excludes="${build.dir}/ ${dist.dir}/"/>
<antcall target="clean"/>
<zip basedir="." destfile="${dist.dir}/${project.app}-${project.version}.xar" excludes="${dist.dir}/"/>
</target>

<target name="clean">
<delete dir="${build.dir}"/>
</target>
</project>