mirror of
https://github.com/apache/maven.git
synced 2025-02-21 17:40:48 +00:00
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:
parent
2547a2f433
commit
3bcac3bd2f
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user