fix(git): do not use += in sh script

Fixes #12251
This commit is contained in:
Carlo Sala 2024-03-03 11:22:25 +01:00
parent 458fc2e1df
commit 70395a6463
No known key found for this signature in database
GPG Key ID: DA6FB450C1A4FE9A

View File

@ -46,7 +46,7 @@ case $1 in
shift 1
;;
* )
_message+=" $1"
_message="${_message} $1"
shift 1
;;
esac