diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-28 10:15:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-28 10:15:10 -0700 |
commit | 5571be75ebb6c8a1f88b3897d9631279106d8e0f (patch) | |
tree | a86ca57152212a8389234b63dc8c13303cf12df7 /git-pull-script | |
parent | Teach packing about "tag" objects (diff) | |
download | tgif-5571be75ebb6c8a1f88b3897d9631279106d8e0f.tar.xz |
Duh. Fix transposed characters in git-pull-script
I'd stupidly only tested the non-branch-name version.
Diffstat (limited to 'git-pull-script')
-rwxr-xr-x | git-pull-script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-pull-script b/git-pull-script index 4ec12bd887..961edc481b 100755 --- a/git-pull-script +++ b/git-pull-script @@ -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} |