Browse Source

fabric: fix awk "return not in function" error in completion

Fixes #8337
Marc Cornellà 4 years ago
parent
commit
687c50bdf9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/fabric/_fab

+ 1 - 1
plugins/fabric/_fab

@@ -6,7 +6,7 @@ declare -A opt_args
 
 declare -a target_list
 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
     else {
         docstring=substr($0, index($0,$2))