Merge pull request #1649 from likan999/patch-1

Fix error "bash: _git_bash_completion_found: command not found..."
pull/1650/head
Nils Winkler 2020-08-10 09:04:51 +02:00 committed by GitHub
commit 24ed7c6b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ for _comp_path in "${_git_bash_completion_paths[@]}" ; do
done done
# Cleanup # Cleanup
if ! _git_bash_completion_found ; then if [[ "${_git_bash_completion_found}" == false ]]; then
_log_warning "no completion files found - please try enabling the 'system' completion instead." _log_warning "no completion files found - please try enabling the 'system' completion instead."
fi fi
unset _git_bash_completion_paths unset _git_bash_completion_paths