From b045795b9ca79d3ac90cffcaa0fd5b0543d49f1c Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Fri, 28 Aug 2015 15:40:24 -0700 Subject: [PATCH] Improved uninstall remove VM messages Signed-off-by: Jeffrey Morgan --- osx/uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osx/uninstall.sh b/osx/uninstall.sh index c51a365676..edfafd18ab 100755 --- a/osx/uninstall.sh +++ b/osx/uninstall.sh @@ -8,7 +8,7 @@ if [ "${USER}" != "root" ]; then fi while true; do - read -p "Remove all VMs? (Y/N): " yn + read -p "Remove all Docker Machine VMs? (Y/N): " yn case $yn in [Yy]* ) docker-machine rm -f $(docker-machine ls -q); break;; [Nn]* ) break;;