Skip to content

Commit

Permalink
First iteration for generating the MANIFEST file with checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Mar 21, 2010
1 parent 05e3193 commit b221092
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -257,5 +257,34 @@
</replaceregexp>
<echo message="All trailing spaces removed." />
</target>

<target name="checksums">
<delete dir="google" />
<mkdir dir="google" />
<copy file="dist/jquery-ui-1.9pre/version.txt" todir="google" />
<copy file="dist/jquery-ui-1.9pre/AUTHORS.txt" todir="google" />
<copy file="dist/jquery-ui-1.9pre/GPL-LICENSE.txt" todir="google" />
<checksum>
<fileset dir="google" />
</checksum>
<concat destfile="google/MANIFEST">
<fileset dir="google" includes="**/*.MD5" />
</concat>
<!--
<for param="file">
<path><fileset dir="google" includes="**/" excludes="**/*.MD5" /></path>
<sequential>
<checksum file="@{file}" />
</sequential>
</for>
<for param="file">
<path><fileset dir="google" includes="**/" excludes="**/*.MD5" /></path>
<sequential>
<echo message="@{file}" />
<concat><file file="@{file}.MD5" /></concat>
</sequential>
</for>
-->
</target>

</project>

0 comments on commit b221092

Please sign in to comment.