Skip to content

Commit

Permalink
Fixed distribution link in generate-solr-config.sh forcing redirection
Browse files Browse the repository at this point in the history
For more details see #249 and #248
  • Loading branch information
alongosz authored May 7, 2024
1 parent 6ddce40 commit 2fb300d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/generate-solr-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2fb300d

Please sign in to comment.