Fixes #44 : use 2.0 plugin install syntax

This commit is contained in:
Geoff Bourne 2015-11-04 18:21:46 -06:00
parent b3a79d6b08
commit 01473c4e43

View file

@ -45,7 +45,7 @@ if [ -n "$PLUGINS" ]; then
for p in $(echo $PLUGINS | awk -v RS=, '{print}')
do
echo "Installing the plugin $p"
$ES_HOME/bin/plugin --install $p
$ES_HOME/bin/plugin install $p
done
fi