From 60981da7ea50baeaaf13350bcb090862447c4d7f Mon Sep 17 00:00:00 2001 From: Josh Kamdjou Date: Tue, 12 Dec 2023 08:53:23 -0500 Subject: [PATCH] Make error message more verbose --- update-and-run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update-and-run.sh b/update-and-run.sh index 042ad3a..5a03784 100755 --- a/update-and-run.sh +++ b/update-and-run.sh @@ -18,7 +18,9 @@ fi if [ "$1" != "always_launch" ]; then if ! $cmd_prefix docker compose ps | grep "mantis" >/dev/null 2>&1; then - print_error "docker compose appears to be brought down. Will not proceed to avoid relaunching." + print_error "Sublime Platform appears to have been manually brought down. Will not proceed to avoid relaunching." + print_warning "If you wish to relaunch, please refer to the documentation here:" + print_warning "https://docs.sublimesecurity.com/docs/quickstart-docker#how-to-update" exit 0 fi fi