Use md5sum and sha1sum instead of openssl

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2005-10-28 02:38:41 +00:00
parent 2547a2f433
commit 3bcac3bd2f

View File

@ -32,7 +32,7 @@ retval=$?; if [ $retval != 0 ]; then exit $retval; fi
cd $src
svn update
rsync -e ssh -v -rpt --exclude=.svn --exclude=updated-poms.log $src/ $dest/ > updated-poms.log
for f in `grep .pom updated-poms.log` ; do openssl md5 $dest/$f > $dest/$f.md5 ; openssl sha1 $dest/$f > $dest/$f.sha1; done
for f in `grep .pom updated-poms.log` ; do md5sum $dest/$f > $dest/$f.md5 ; sha1sum $dest/$f > $dest/$f.sha1; done
retval=$?; if [ $retval != 0 ]; then exit $retval; fi
)
retval=$?; if [ $retval != 0 ]; then exit $retval; fi