mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
fabric: fix awk "return not in function" error in completion
Fixes #8337
This commit is contained in:
parent
e363109a6d
commit
687c50bdf9
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ declare -A opt_args
|
||||||
|
|
||||||
declare -a target_list
|
declare -a target_list
|
||||||
target_list=("${(@f)$(fab -l 2>/dev/null | awk '{
|
target_list=("${(@f)$(fab -l 2>/dev/null | awk '{
|
||||||
if (NF == 0 || NR == 1) return
|
if (NF == 0 || NR == 1) next
|
||||||
if (NF < 2) print $1
|
if (NF < 2) print $1
|
||||||
else {
|
else {
|
||||||
docstring=substr($0, index($0,$2))
|
docstring=substr($0, index($0,$2))
|
||||||
|
|
Loading…
Reference in a new issue