Update identity_renderBase.sh:
- Avoid using invokation like
cli_printActionPreamble "${FILES[@]}" '' ''
In this case ${FILES[@]}, when has more than one value do quote
them and so they are interpreted as arguments to
cli_printActionPreamble which is not what we need here. So,
Change invokations similar to that above with the following:
cli_printActionPreamble "${FILES[*]}" '' ''
in order to avoid quotation of array values.