Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2020-12-31 02:29:48 +0300
committerJunio C Hamano <gitster@pobox.com>2021-01-05 02:25:56 +0300
commit810df0ea8ed00f31d372f3fd90c205d953aea1e6 (patch)
tree4ccb17826290f963704c5d28f6818d6a6596610c /contrib
parent7f94b78ddabdb49cde32b088ca66b422e7cda628 (diff)
completion: bash: improve function detection
1. We should quote the argument 2. We don't need two redirections 3. A safeguard for arguments (-a) would be good Suggested-by: René Scharfe <l.s.r@web.de> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/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 869c73ee2c..1150d4bf44 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -3359,7 +3359,7 @@ __git_support_parseopt_helper () {
}
__git_have_func () {
- declare -f $1 >/dev/null 2>/dev/null
+ declare -f -- "$1" >/dev/null 2>&1
}
__git_complete_command () {