From 2d971fc97de00570ded934080721ec6ed8b8c5e6 Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Wed, 27 Sep 2023 23:28:45 +0200 Subject: [PATCH] update the watch warning message when no services with a develop section Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- pkg/compose/watch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/watch.go b/pkg/compose/watch.go index 29b0fe33e..046ffe9e7 100644 --- a/pkg/compose/watch.go +++ b/pkg/compose/watch.go @@ -149,7 +149,7 @@ func (s *composeService) Watch(ctx context.Context, project *types.Project, serv } if !watching { - return fmt.Errorf("none of the selected services is configured for watch, consider setting an 'x-develop' section") + return fmt.Errorf("none of the selected services is configured for watch, consider setting an 'develop' section") } return eg.Wait()