Repository: nifi
Updated Branches:
  refs/heads/master a0f568b69 -> c730f802b


NIFI-4672 Adding missing quotes around arguments passed in from the entrypoint 
script.

This closes #2322.

Signed-off-by: Aldrin Piri <ald...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/c730f802
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/c730f802
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/c730f802

Branch: refs/heads/master
Commit: c730f802b7a20e53ee381e11c5b1d4a5b487c912
Parents: a0f568b
Author: Aldrin Piri <ald...@apache.org>
Authored: Wed Dec 6 10:45:51 2017 -0500
Committer: Aldrin Piri <ald...@apache.org>
Committed: Wed Dec 6 10:48:21 2017 -0500

----------------------------------------------------------------------
 nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/c730f802/nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh
----------------------------------------------------------------------
diff --git a/nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh 
b/nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh
index ead4825..28fb15d 100755
--- a/nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh
+++ b/nifi-toolkit/nifi-toolkit-assembly/docker/sh/docker-entrypoint.sh
@@ -36,5 +36,5 @@ if ! [ -f "${toolkit_path}/${program}.sh" ]; then
     print_help ${program}
 else
     shift
-    ${toolkit_path}/${program}.sh $@
+    ${toolkit_path}/${program}.sh "$@"
 fi

Reply via email to