aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-04-10 09:25:11 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-04-10 09:25:11 -0400
commitf1d4ec2404f5ca7fce898787ee22535d4b8c9829 (patch)
treeb135a25a17db97bdc30d1fb30510ab5a41ddc028 /src/main.c
parent22d22d43acae05df4eabc2cc2634b3e548296227 (diff)
downloadstasis-f1d4ec2404f5ca7fce898787ee22535d4b8c9829.tar.gz
Display an error message regardless if we've enabled continue-on-error.
* Avoids confusion when docker build fails
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 6aa9402..f91b3f7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -552,6 +552,7 @@ int main(int argc, char *argv[]) {
if (globals.enable_docker) {
msg(OMC_MSG_L1, "Building Docker image\n");
if (delivery_docker(&ctx)) {
+ msg(OMC_MSG_L1 | OMC_MSG_ERROR, "Failed to build docker image!\n");
COE_CHECK_ABORT(1, "Failed to build docker image");
}
} else {