0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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

Fixes #8337
This commit is contained in:
Marc Cornellà 2019-10-30 23:12:45 +01:00 committed by GitHub
parent e363109a6d
commit 687c50bdf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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))