Brett Porter wrote:
>
> On 21/04/2010, at 5:14 PM, Milos Kleint wrote:
>
>> gpg --verify plexus-compiler-javac-1.8.jar.asc
>> gpg --verify plexus-compiler-javac-1.8.pom.asc
>> both say
>> gpg: Signature made Tue Mar 30 00:28:04 2010 CEST using RSA key ID
>> B0874707 gpg: Good signature from "Milos Kleint <[email protected]>"
>>
>> How do I recreate and reupload the correct checksums?
>
> openssl md5 FILENAME >FILENAME.md5
> openssl sha1 FILENAME >FILENAME.sha1
>
> (feel free to edit to just be the checksum)
Just a tip: I always use a small bash function that creates these like wagon
itself:
function mvnsum()
{
for z in "$@"; do
md5sum "$z" | cut -f 1 -d ' ' | tr -d '\n\r' > "$z".md5
sha1sum "$z" | cut -f 1 -d ' ' | tr -d '\n\r' > "$z".sha1
done
}
- Jörg
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]