Skip to content

Commit

Permalink
Converted DOS line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
klaegera committed Dec 24, 2018
1 parent 63c6371 commit 97c1134
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<project name="Spirograph" default="jar">
<target name="compile">
<mkdir dir="build"/>
<javac srcdir="src" destdir="build" includeantruntime="false"/>
</target>
<target name="jar" depends="compile">
<jar destfile="${ant.project.name}.jar" basedir="build">
<manifest>
<attribute name="Main-Class" value="${ant.project.name}"/>
</manifest>
</jar>
</target>
<target name="clean">
<delete dir="build"/>
<delete file="${ant.project.name}.jar"/>
</target>
</project>
<project name="Spirograph" default="jar">
<target name="compile">
<mkdir dir="build"/>
<javac srcdir="src" destdir="build" includeantruntime="false"/>
</target>
<target name="jar" depends="compile">
<jar destfile="${ant.project.name}.jar" basedir="build">
<manifest>
<attribute name="Main-Class" value="${ant.project.name}"/>
</manifest>
</jar>
</target>
<target name="clean">
<delete dir="build"/>
<delete file="${ant.project.name}.jar"/>
</target>
</project>

0 comments on commit 97c1134

Please sign in to comment.