mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
Merge pull request #3759 from mikeokner/master
Adding quotes to git completion discovery path
This commit is contained in:
commit
ea5ff03b92
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ if [ -z "$script" ]; then
|
||||||
local -a locations
|
local -a locations
|
||||||
local e
|
local e
|
||||||
locations=(
|
locations=(
|
||||||
$(dirname ${funcsourcetrace[1]%:*})/git-completion.bash
|
"$(dirname ${funcsourcetrace[1]%:*})/git-completion.bash"
|
||||||
'/etc/bash_completion.d/git' # fedora, old debian
|
'/etc/bash_completion.d/git' # fedora, old debian
|
||||||
'/usr/share/bash-completion/completions/git' # arch, ubuntu, new debian
|
'/usr/share/bash-completion/completions/git' # arch, ubuntu, new debian
|
||||||
'/usr/share/bash-completion/git' # gentoo
|
'/usr/share/bash-completion/git' # gentoo
|
||||||
|
|
Loading…
Reference in a new issue