mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-05 23:48:44 +02:00
completion: Add missing quoting
As suggested by shellcheck. Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
@@ -11,7 +11,7 @@ __gdbus() {
|
||||
local IFS=$'\n'
|
||||
local cur="$(_get_cword :)"
|
||||
|
||||
local suggestions=$(gdbus complete "${COMP_LINE}" ${COMP_POINT})
|
||||
local suggestions="$(gdbus complete "${COMP_LINE}" "${COMP_POINT}")"
|
||||
COMPREPLY=($(compgen -W "$suggestions" -- "$cur"))
|
||||
|
||||
# Remove colon-word prefix from COMPREPLY items
|
||||
|
Reference in New Issue
Block a user