Skip to content

Commit 8bc8593

Browse files
committed
provider services: use '--project-name=' notation
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
1 parent 8978c10 commit 8bc8593

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/compose/plugins.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func (s *composeService) setupPluginCommand(ctx context.Context, project *types.
186186
return nil, err
187187
}
188188

189-
args := []string{"compose", "--project-name", project.Name, command}
189+
args := []string{"compose", fmt.Sprintf("--project-name=%s", project.Name), command}
190190
for k, v := range provider.Options {
191191
for _, value := range v {
192192
if _, ok := currentCommandMetadata.GetParameter(k); commandMetadataIsEmpty || ok {

0 commit comments

Comments
 (0)