From 0b3fdc90ab1164e82ae52d07d740debf030a3dfb Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Mon, 29 Sep 2025 09:42:44 +0200 Subject: [PATCH] provider services: use '--project-name=' notation Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- pkg/compose/plugins.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/plugins.go b/pkg/compose/plugins.go index abb4e4fda73..25bebfa9e82 100644 --- a/pkg/compose/plugins.go +++ b/pkg/compose/plugins.go @@ -186,7 +186,7 @@ func (s *composeService) setupPluginCommand(ctx context.Context, project *types. return nil, err } - args := []string{"compose", "--project-name", project.Name, command} + args := []string{"compose", fmt.Sprintf("--project-name=%s", project.Name), command} for k, v := range provider.Options { for _, value := range v { if _, ok := currentCommandMetadata.GetParameter(k); commandMetadataIsEmpty || ok {