From 6f9751d61820981f08ca73ca81f3ccc9a1b6176e Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Tue, 14 Jul 2015 12:00:51 -0700 Subject: [PATCH] Fix windows start script --- windows/start.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/windows/start.sh b/windows/start.sh index de40a7d84d..eb68109459 100644 --- a/windows/start.sh +++ b/windows/start.sh @@ -6,6 +6,10 @@ ISO=$HOME/.docker/machine/cache/boot2docker.iso VM=dev DOCKER_MACHINE=./docker-machine.exe +BLUE='\033[1;34m' +GREEN='\033[0;32m' +NC='\033[0m' + mkdir -p ~/.docker/machine/cache if [ ! -f $ISO ]; then mkdir -p "$(dirname "$ISO")" @@ -26,9 +30,7 @@ $DOCKER_MACHINE start dev echo "Setting environment variables for machine $VM..." ./docker-machine.exe env $VM | sed 's,\\,\\\\,g' # eval swallows single backslashes in windows style path -eval "$(./docker-machine.exe env $VM 2>/dev/null | sed 's,\\,\\\\,g')" - -cd +eval "$($DOCKER_MACHINE env $VM 2>/dev/null | sed 's,\\,\\\\,g')" clear cat << EOF @@ -44,7 +46,6 @@ cat << EOF \____\_______/ EOF -echo "The Quick Start CLI is configured to use Docker with the $VM VM" +echo -e "${BLUE}docker${NC} is configured to use the ${GREEN}dev${NC} machine with IP ${GREEN}$($DOCKER_MACHINE ip $VM)${NC}" echo - -exec "$BASH" --login -i +cd