Browse Source

update the watch warning message when no services with a develop section

Signed-off-by: Guillaume Lours <[email protected]>
Guillaume Lours 2 years ago
parent
commit
2d971fc97d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/compose/watch.go

+ 1 - 1
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()