From eac3330919cf637d8b11d382e5d7b95865ec92a9 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 21 Apr 2016 17:12:25 -0700 Subject: [PATCH] exit 0 after "container has already started" --- launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher b/launcher index 83528f1..873a9cc 100755 --- a/launcher +++ b/launcher @@ -471,7 +471,7 @@ run_start() { if [ ! -z $existing ] then echo "Nothing to do, your container has already started!" - exit 1 + exit 0 fi existing=`$docker_path ps -a | awk '{ print $1, $(NF) }' | grep " $config$" | awk '{ print $1 }'` -- 2.25.1