mirror of https://github.com/apache/nifi.git
NIFI-4672 Adding missing quotes around arguments passed in from the entrypoint script.
This closes #2322. Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
parent
a0f568b69c
commit
c730f802b7
|
@ -36,5 +36,5 @@ if ! [ -f "${toolkit_path}/${program}.sh" ]; then
|
||||||
print_help ${program}
|
print_help ${program}
|
||||||
else
|
else
|
||||||
shift
|
shift
|
||||||
${toolkit_path}/${program}.sh $@
|
${toolkit_path}/${program}.sh "$@"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue