From 5b67adc13764e7045be04b4731061ce5b3477ed4 Mon Sep 17 00:00:00 2001 From: Alessandro Puccetti Date: Wed, 17 Aug 2016 14:09:58 +0200 Subject: [PATCH] scope: fix stop command for OSX Before this patch, `scope stop` was not stopping scope-app --- scope | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scope b/scope index 32f172410c..62d43a0f11 100755 --- a/scope +++ b/scope @@ -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 ;;