summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder@ira.uka.de>2011-03-10 18:12:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-11 06:38:48 (GMT)
commit80152b09438f757a2beefd632f13dc0628c11418 (patch)
treee41bb4d3e763ba6e4fc4dbe9e80485c51e215ec3 /contrib
parent046613c5465e4fc0611f93a5ef31d3815fb50c22 (diff)
downloadgit-80152b09438f757a2beefd632f13dc0628c11418.zip
git-80152b09438f757a2beefd632f13dc0628c11418.tar.gz
git-80152b09438f757a2beefd632f13dc0628c11418.tar.bz2
bash: fix misindented esac statement in __git_complete_file()
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 893b771..344a47f 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -680,7 +680,7 @@ __git_complete_file ()
*)
ls="$ref"
;;
- esac
+ esac
case "$COMP_WORDBREAKS" in
*:*) : great ;;