File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11X64? = false
22
3- ES_FILE_VERSION =6.0.0
3+ ES_FILE_VERSION =6.0.1
44ES_VERSION =$(ES_FILE_VERSION )
5- ES_SHA512 =b7830f61577c73fa06fad2b15f876dba5fb239099ce11035a2632035d35a41b25967bd03adb214ef3c286983e7fc3dc27daef1559f66cabd2b24d9394a10a6f8
5+ ES_SHA512 =e5eca917aaa327ea5e12f05ad920db1080eeddc7582e30e86845e1ab0ed561bf0954e9f45da29ee360253829d1a4c78d518c3b0b33ebb1145aab0781ec122ba0
66ES_NAME =elasticsearch-$(ES_VERSION )
77ES_HOME =vendor/$(ES_NAME )
88ES_LIB =$(ES_HOME ) /lib
Original file line number Diff line number Diff line change @@ -209,19 +209,22 @@ choco install -y visualstudiocode -params '/NoDesktopIcon /NoQuicklaunchIcon'
209209Bash ' cd /c/vagrant && make clean all'
210210
211211# install elasticsearch.
212+ Write-Output ' Installing Elasticsearch...'
212213Start-Process `
213214 (dir C:\vagrant\elasticsearch-*- setup* .exe).FullName `
214215 ' /VERYSILENT' , ' /SUPPRESSMSGBOXES' `
215216 - Wait
216217# install plugins.
217218function Install-ElasticsearchPlugin ($name ) {
219+ Write-Output " Installing the $name Elasticsearch plugin..."
218220 cmd / C " call "" C:\Program Files\Elasticsearch\bin\elasticsearch-plugin.bat"" install --silent $name "
219221 if ($LASTEXITCODE ) {
220222 throw " failed to install Elasticsearch plugin $name with exit code $LASTEXITCODE "
221223 }
222224}
223225Install-ElasticsearchPlugin ' ingest-attachment'
224226# start it.
227+ Write-Output ' Starting Elasticsearch...'
225228Start-Service elasticsearch
226229
227230# remove the default desktop shortcuts.
You can’t perform that action at this time.
0 commit comments