Duh. Fix transposed characters in git-pull-script

I'd stupidly only tested the non-branch-name version.
maint
Linus Torvalds 2005-06-28 10:15:10 -07:00
parent a69d094366
commit 5571be75eb
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ fi
if [ "$2" ]
then
merge_name="$type '$2' of $merge_name"
merge_head="refs/{$type}s/$2"
merge_head="refs/${type}s/$2"
fi

: ${GIT_DIR=.git}