fix (plugin): use grep -E instead of egrep in fabric.completion.bash
parent
906e2da955
commit
c1e5c336cf
|
|
@ -91,7 +91,7 @@ function __fab_completion() {
|
|||
-*)
|
||||
if [[ -z "${__FAB_COMPLETION_LONG_OPT}" ]]; then
|
||||
export __FAB_COMPLETION_LONG_OPT=$(
|
||||
fab --help | egrep -o "\-\-[A-Za-z_\-]+\=?" | sort -u)
|
||||
fab --help | grep -E -o "\-\-[A-Za-z_\-]+\=?" | sort -u)
|
||||
fi
|
||||
opts="${__FAB_COMPLETION_LONG_OPT}"
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in New Issue