From 5316bc9519dea514746b6fd2292e6ccfd627100f Mon Sep 17 00:00:00 2001 From: Elastic Jasper Date: Thu, 17 Nov 2016 11:10:47 -0500 Subject: [PATCH] [plugin cli] Wrap arguments in quotes to preserve whitespace Backports PR #8945 **Commit 1:** [plugin cli] Wrap arguments in quotes to preserve whitespace * Original sha: 18d6e921ef2c5ace99f7738622f69bc1905e44b5 * Authored by Jonathan Budzenski on 2016-11-02T17:28:49Z --- bin/kibana-plugin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/kibana-plugin b/bin/kibana-plugin index 4d36bee476bd3..02fc4e0d6124e 100755 --- a/bin/kibana-plugin +++ b/bin/kibana-plugin @@ -21,4 +21,4 @@ if [ ! -x "$NODE" ]; then exit 1 fi -exec "${NODE}" $NODE_OPTIONS --no-warnings "${DIR}/src/cli_plugin" ${@} +exec "${NODE}" $NODE_OPTIONS --no-warnings "${DIR}/src/cli_plugin" "$@"