From a7894cbda984c4e8cea789ca135f6a7804cf813d Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Thu, 23 Dec 2021 02:10:57 +0100 Subject: [PATCH] fix: better explanation --- pkg/compose/compose.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/compose/compose.go b/pkg/compose/compose.go index 60f3e325..fb82c36f 100644 --- a/pkg/compose/compose.go +++ b/pkg/compose/compose.go @@ -146,8 +146,8 @@ func UpdateLabel(pattern, serviceName, label, recipeName string) error { } if !discovered { - logrus.Warn("no existing label found, cannot continue...") - logrus.Fatalf("add \"%s\" manually, automagic insertion not supported yet", label) + logrus.Warn("no existing label found, automagic insertion not supported yet") + logrus.Fatalf("add \"%s\" manually to the 'app' service in %s", label, composeFile) } }