diff --git a/README.md b/README.md index ee562e4..c910c3e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Default: ```/usr/local/lib``` ##### elasticsearch.noOfHwNodes -How many hardware nodes we want to run this cluster on. This prevents multiple nodes from the same cluster to run on a single physical node. +How many hardware nodes we want to run this cluster on. This prevents multiple mesos nodes from running on a single physical node. Default: ```1``` diff --git a/bin/build b/bin/build index 0777302..26dcf6c 100755 --- a/bin/build +++ b/bin/build @@ -1,8 +1,8 @@ #!/bin/bash -x # Our elasticsearch-mesos project version follows the Elasticsearch version number -PROJVERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[') -ESVERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=elasticsearch.version | grep -v '\[') +PROJVERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\['` +ESVERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=elasticsearch.version | grep -v '\['` echo Building Elasticsearch $ESVERSION for Mesos