pecigonzalo / docker-machine-vmwareworkstation

VMWare Workstation driver for Docker Machine https://github.com/docker/machine
Apache License 2.0
363 stars 67 forks source link

Docker machine VM re-deployed every time. #31

Open ray-g opened 8 years ago

ray-g commented 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}"

pecigonzalo commented 8 years ago

Thanks for the report, ill give it a look ASAP.