1
0
mirror of https://github.com/git/git.git synced 2024-09-30 16:01:40 +02:00

Fix git-fetch-script breakage

It had the test for the destination reversed.
This commit is contained in:
Linus Torvalds 2005-07-16 10:27:19 -07:00
parent 98e031f0bb
commit 60ea0fdd7d

@ -29,6 +29,8 @@ git-rev-parse --verify "$head" > /dev/null || exit 1
case "$merge_store" in
'')
;;
*)
echo "$head" > "$GIT_DIR/$merge_store"
esac &&