mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Fix git cl completion
__git_cl_all_commands is a variable, so it should use the variable
parameter, ${}, not a command substitution $().
Change-Id: I81fc2c73afd85cc1f737af00fbc294d933145e22
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2205456
Reviewed-by: Andrii Shyshkalov <tandrii@google.com>
Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org>
Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
This commit is contained in:
@@ -30,5 +30,5 @@ __git_cl_compute_all_commands () {
|
||||
|
||||
_git_cl () {
|
||||
__git_cl_compute_all_commands
|
||||
__gitcomp_nl "$(__git_cl_all_commands)"
|
||||
__gitcomp_nl "${__git_cl_all_commands}"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user