Skip to content

Commit

Permalink
#1125 Fix filename for downloaded SOLR in Vagrant
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Oct 26, 2023
1 parent a0a6564 commit 48119b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ SOLR_TAR="solr-$SOLR_VERSION.tgz"
if test ! -f "$SOLR_TAR"; then
SOLR_URL="https://www.apache.org/dyn/closer.lua/solr/solr/$SOLR_VERSION/$SOLR_TAR?action=download"
echo "Getting: $SOLR_URL"
wget -q --show-progress --progress=bar:force $SOLR_URL
wget -q --show-progress --progress=bar:force $SOLR_URL -O $SOLR_TAR
fi
tar xfz "$SOLR_TAR" -C /home/vagrant
cd /home/vagrant/solr-$SOLR_VERSION
Expand Down

0 comments on commit 48119b4

Please sign in to comment.