Fix sql cli sourcing of x-pack-env (#52613)

The sql-cli script sources x-pack-env, but it does so assuming the
current directory is ES_HOME. This commit alters the source command to
use ES_HOME which is available after running elasticsearch-env.

closes #47803
This commit is contained in:
Ryan Ernst 2020-02-24 11:13:06 -08:00 committed by Ryan Ernst
parent 7d9de8412a
commit 8c295cdc87
2 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@
source "`dirname "$0"`"/elasticsearch-env
source "`dirname "$0"`"/x-pack-env
source "$ES_HOME"/bin/x-pack-env
CLI_JAR=$(ls $ES_HOME/bin/elasticsearch-sql-cli-*.jar)
CLI_JAR=$(ls "$ES_HOME"/bin/elasticsearch-sql-cli-*.jar)
exec \
"$JAVA" \