From 98a08967298da32053fc404224af2885b38b7513 Mon Sep 17 00:00:00 2001 From: Josh Kamdjou Date: Thu, 4 Jan 2024 10:59:03 -0500 Subject: [PATCH] Make error message more verbose (#144) --- 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..63de59a 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 shut 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