o adding little fixes supplied by bayard from osjava.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-05-12 18:05:32 +00:00
parent ee13377019
commit cc17d28398
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#!/bin/sh
for i in `find -regex '.*\.jar\|.*\.pom'`
do
md5sum $i | sed 's/ .*$//' > $i.md5
chown --reference $i $i.md5
done