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:
Aldrin Piri 2017-12-06 10:45:51 -05:00
parent a0f568b69c
commit c730f802b7
No known key found for this signature in database
GPG Key ID: 531AEBAA4CFE5D00
1 changed files with 1 additions and 1 deletions

View File

@ -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