summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-05-04 08:43:12 +0200
committerGuido Günther <agx@sigxcpu.org>2015-05-04 08:43:12 +0200
commita1a36e7e4c163feb2c48c4700bd832748faa265e (patch)
treef73ad66d872fb879ea98fde9e11e5f05f365f1a4
parente0d527b047f4671eafd5aa8b1fb9b75728152b1e (diff)
bash-completion: remove useless echo
-rw-r--r--debian/git-buildpackage.bash-completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/git-buildpackage.bash-completion b/debian/git-buildpackage.bash-completion
index 27d5813e..27072d09 100644
--- a/debian/git-buildpackage.bash-completion
+++ b/debian/git-buildpackage.bash-completion
@@ -200,7 +200,7 @@ _gbp ()
if [ -z $command ]; then
COMPREPLY=( $(compgen -W "$commands" -- $cur ) )
else
- func=_gbp-$(echo $command)
+ func=_gbp-"${command}"
$func
fi
}