Open ray-g opened 8 years ago
In start.sh
vmrun.exe list | grep \""${VM}"\" &> /dev/null VM_EXISTS_CODE=$?
There are duplicated " in grep \""${VM}"\" makes grep cannot match the host name. Please correct it as grep $VM or grep "${VM}"
"
grep \""${VM}"\"
grep $VM
grep "${VM}"
Thanks for the report, ill give it a look ASAP.
In start.sh
There are duplicated
"
ingrep \""${VM}"\"
makes grep cannot match the host name. Please correct it asgrep $VM
orgrep "${VM}"