mirror of https://github.com/apache/maven.git
Don't fail if license is not present, fixed typo
PR: MRM-65 git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@373640 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3d2897c680
commit
94db90180a
|
@ -99,7 +99,7 @@ echo $BUNDLE
|
||||||
# A little help for manually created upload bundles
|
# A little help for manually created upload bundles
|
||||||
[ -f license.txt ] && mv license.txt $LIC
|
[ -f license.txt ] && mv license.txt $LIC
|
||||||
|
|
||||||
if [ ! -f $LIC ]
|
if [ -f $LIC ]
|
||||||
then
|
then
|
||||||
../d2u $LIC
|
../d2u $LIC
|
||||||
mkdir -p $REPODIR/${groupId}/licenses
|
mkdir -p $REPODIR/${groupId}/licenses
|
||||||
|
|
Loading…
Reference in New Issue