On 17/02/2010, Mladen Turk <mt...@apache.org> wrote:
> On 02/17/2010 05:12 AM, Konstantin Kolinko wrote:
>
> > 2010/2/10 Mladen Turk<mt...@apache.org>:
> >
> > > Apache Tomcat Native 1.1.20 is:
> > >
> > > [x] Stable - no major issues, no regressions
> > >
> >
> > Tested win32 binaries only.
> >
> >
> > Minor: *.md5 and *.sha1 files should have " *" between checksum and
> > filename, because those files are binary.  md5sum/sha1sum that I am
> > using were saying that the checksums are wrong without that change.
> >
> >
>
>  OK. I'll use the `md5sum --binary ...` in the future
>  You can do the same however when checking

BTW, it's pretty easy to use Ant to create the hashes.
For example:

    <target name="_hash" unless="hash.skip">
        <echo message="Creating MD5 for ${path}"/>
        <basename property="_base" file="${path}"/>
        <checksum algorithm="MD5" file="${path}" property="md5"/>
        <echo message="${md5} *${_base}" file="${path}.md5"/>
        <echo message="Creating SHA for ${path}"/>
        <checksum algorithm="SHA" file="${path}" property="sha"/>
        <echo message="${sha} *${_base}" file="${path}.sha"/>
    </target>


>  Regards
>  --
>  ^TM
>
>
> ---------------------------------------------------------------------
>  To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
>  For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to