Skip to content

Commit f00b9ca

Browse files
committed
remove unused build/
1 parent 2fe352a commit f00b9ca

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

build.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
# Instead, copy it to local.build.properties and edit that.
44
#
55
project.app=EditionExample
6-
build.dir=build
76
dist.dir=dist

build.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@
99
<property name="project.name" value="${package(name)}"/>
1010

1111
<target name="xar">
12-
<mkdir dir="${build.dir}"/>
1312
<mkdir dir="${dist.dir}"/>
14-
<zip basedir="." destfile="${dist.dir}/${project.app}-${project.version}.xar" excludes="${build.dir}/ ${dist.dir}/"/>
15-
<antcall target="clean"/>
13+
<zip basedir="." destfile="${dist.dir}/${project.app}-${project.version}.xar" excludes="${dist.dir}/"/>
1614
</target>
1715

18-
<target name="clean">
19-
<delete dir="${build.dir}"/>
20-
</target>
2116
</project>

0 commit comments

Comments
 (0)