mirror of https://github.com/apache/maven.git
Fix commons-logging metadata
PR: MEV-264 git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@357686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1837c5d689
commit
a221c4db48
|
@ -24,8 +24,15 @@ retval=$?; if [ $retval != 0 ]; then exit $retval; fi
|
|||
)
|
||||
retval=$?; if [ $retval != 0 ]; then exit $retval; fi
|
||||
|
||||
|
||||
# hack prevent commons-logging-1.1-dev
|
||||
rm -rf /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-logging/commons-logging/1.1-dev
|
||||
CL=/home/projects/maven/repository-staging/to-ibiblio/maven2/commons-logging/commons-logging
|
||||
rm -rf $CL/1.1-dev
|
||||
grep -v 1.1-dev $CL/maven-metadata.xml > $CL/maven-metadata.xml.tmp
|
||||
mv $CL/maven-metadata.xml.tmp $CL/maven-metadata.xml
|
||||
md5sum $CL/maven-metadata.xml > $CL/maven-metadata.xml.md5
|
||||
sha1sum $CL/maven-metadata.xml > $CL/maven-metadata.xml.sha1
|
||||
|
||||
|
||||
(
|
||||
cd $TOOLS_BASE/ibiblio-sync
|
||||
|
|
Loading…
Reference in New Issue