scope: fix stop command for OSX

Before this patch, `scope stop` was not stopping scope-app
This commit is contained in:
Alessandro Puccetti
2016-08-17 14:09:58 +02:00
parent fc4bdf0a14
commit 5b67adc137

2
scope
View File

@@ -244,7 +244,7 @@ EOF
fi
if check_docker_for_mac ; then
if docker inspect $SCOPE_APP_CONTAINER_NAME >/dev/null 2>&1 ; then
docker stop $SCOPE_CONTAINER_NAME >/dev/null
docker stop $SCOPE_APP_CONTAINER_NAME >/dev/null
fi
fi
;;