Fix vagrant vm name matching:
- escaping of single quotes - match older vagrant files which uses keywords as vm names.
This commit is contained in:
parent
1d6a2aa024
commit
7bf946eba1
|
@ -76,7 +76,7 @@ __plugin_list ()
|
|||
|
||||
__vm_list ()
|
||||
{
|
||||
_wanted application expl 'command' compadd $(command grep Vagrantfile -oe '^[^#]*\.vm\.define * "\?''\?\([a-zA-Z0-9\-]\+\)"\?''\?' 2>/dev/null | awk '{print $NF}' | sed 's/''//g'|sed 's/\"//g' )
|
||||
_wanted application expl 'command' compadd $(command grep Vagrantfile -oe '^[^#]*\.vm\.define * ['\''":]\?\([a-zA-Z0-9\-]\+\)['\''"]\?' 2>/dev/null | awk '{print $NF}' | sed 's/'\''//g'|sed 's/\"//g'|sed 's/^://' )
|
||||
}
|
||||
|
||||
__vagrant-box ()
|
||||
|
|
Loading…
Reference in New Issue