diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2020-10-27 20:07:10 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-28 14:30:59 -0700 |
commit | 8030684beb7af806909c3fa79d3d4017121a753c (patch) | |
tree | 03aa34c78814d33645e6848fe1ea69c271787fd1 /contrib/completion/git-completion.bash | |
parent | completion: bash: trivial cleanup (diff) | |
download | tgif-8030684beb7af806909c3fa79d3d4017121a753c.tar.xz |
completion: bash: cleanup cygwin check
Avoid Yoda conditions, and use $OSTYPE.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion/git-completion.bash')
-rw-r--r-- | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index ed059f35c3..980ce73b0f 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -3499,6 +3499,6 @@ __git_complete gitk __gitk_main # when the user has tab-completed the executable name and consequently # included the '.exe' suffix. # -if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then -__git_complete git.exe __git_main +if [ "$OSTYPE" = cygwin ]; then + __git_complete git.exe __git_main fi |