From 2fb300d2161c53c0bd99a96020ed9e6cc0333ef2 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Tue, 7 May 2024 10:06:48 +0200 Subject: [PATCH] Fixed distribution link in generate-solr-config.sh forcing redirection For more details see https://github.com/ezsystems/ezplatform-solr-search-engine/pull/249 and https://github.com/ezsystems/ezplatform-solr-search-engine/pull/248 --- bin/generate-solr-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/generate-solr-config.sh b/bin/generate-solr-config.sh index 937fefd2..702156c9 100755 --- a/bin/generate-solr-config.sh +++ b/bin/generate-solr-config.sh @@ -97,7 +97,7 @@ if [ "$SOLR_INSTALL_DIR" == "" ]; then # If we were not provided an existing install directory we'll temporarily download a version of solr to generate config. GENERATE_SOLR_TMPDIR=`mktemp -d` echo "Downloading solr bundle:" - curl http://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz > $GENERATE_SOLR_TMPDIR/solr-${SOLR_VERSION}.tgz + curl https://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.tgz > $GENERATE_SOLR_TMPDIR/solr-${SOLR_VERSION}.tgz echo "Untaring" cd $GENERATE_SOLR_TMPDIR