Skip to content

Commit 1623682

Browse files
committed
fix(pwdx): fix use of _parse_help
1 parent 3cf004c commit 1623682

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

completions/pwdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ _comp_cmd_pwdx()
1212
esac
1313

1414
if [[ $cur == -* ]]; then
15-
local help='$(_parse_help "$1")'
15+
local help=$(_parse_help "$1")
1616
[[ $help ]] || help=-V
17-
COMPREPLY=($(compgen -W "$help" -- "$cur"))
17+
COMPREPLY=($(compgen -W '$help' -- "$cur"))
1818
else
1919
_pids
2020
fi

0 commit comments

Comments
 (0)