Signed-off-by: Tom Collingwood <tomcollingwood@yahoo.co.uk>
This commit is contained in:
Tom Collingwood 2023-01-06 17:12:36 +00:00 committed by Tom Collingwood
parent b8bbdcd872
commit f2088bb917
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ func (s *composeService) waitDependencies(ctx context.Context, project *types.Pr
if exited {
w.Events(containerEvents(containers, progress.Exited))
if code != 0 {
return fmt.Errorf("service %q didn't completed successfully: exit %d", dep, code)
return fmt.Errorf("service %q didn't complete successfully: exit %d", dep, code)
}
return nil
}