1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01: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

View File

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