0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

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