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

Fixes #8337
master
Marc Cornellà 6 years ago committed by GitHub
parent e363109a6d
commit 687c50bdf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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))

Loading…
Cancel
Save