Pattern: Use of spaces around +=
Issue: -
ShellCheck found an unquoted +=
after a word. To append text to a variable, remove spaces around +=
as in the example.
Example of incorrect code:
var += "my text"
Example of correct code:
var+="my text"