diff --git a/config/containers/multi-service_container.md b/config/containers/multi-service_container.md index 5ae6cc342b..885838df2d 100644 --- a/config/containers/multi-service_container.md +++ b/config/containers/multi-service_container.md @@ -68,7 +68,7 @@ this in a few different ways. # If they are not both 0, then something is wrong if [ $PROCESS_1_STATUS -ne 0 -o $PROCESS_2_STATUS -ne 0 ]; then echo "One of the processes has already exited." - exit -1 + exit 1 fi done ```