Author: gertv
Date: Thu Dec 22 09:22:23 2011
New Revision: 1222118
URL: http://svn.apache.org/viewvc?rev=1222118&view=rev
Log:
Adding --no-check-certificate to make this work on minotaur as well
Modified:
servicemix/scripts/copy-release-distro.sh
Modified: servicemix/scripts/copy-release-distro.sh
URL:
http://svn.apache.org/viewvc/servicemix/scripts/copy-release-distro.sh?rev=1222118&r1=1222117&r2=1222118&view=diff
==============================================================================
--- servicemix/scripts/copy-release-distro.sh (original)
+++ servicemix/scripts/copy-release-distro.sh Thu Dec 22 09:22:23 2011
@@ -17,10 +17,10 @@ function download_bin {
for type in "zip" "tar.gz"
do
name="$GROUP/$ARTIFACT/$VERSION/$ARTIFACT-$VERSION.$type"
- wget "https://repository.apache.org/content/repositories/releases/$name"
+ wget --no-check-certificate
"https://repository.apache.org/content/repositories/releases/$name"
for hash in "asc" "md5" "sha1"
do
- wget
"https://repository.apache.org/content/repositories/releases/$name.$hash"
+ wget --no-check-certificate
"https://repository.apache.org/content/repositories/releases/$name.$hash"
done
done
}
@@ -32,10 +32,10 @@ function download_src {
for type in "zip" "tar.gz"
do
name="$GROUP/$ARTIFACT/$VERSION/$ARTIFACT-$VERSION-src.$type"
- wget "https://repository.apache.org/content/repositories/releases/$name"
+ wget --no-check-certificate
"https://repository.apache.org/content/repositories/releases/$name"
for hash in "asc" "md5" "sha1"
do
- wget
"https://repository.apache.org/content/repositories/releases/$name.$hash"
+ wget --no-check-certificate
"https://repository.apache.org/content/repositories/releases/$name.$hash"
done
done
}