Skip to content

Commit

Permalink
Don't overescape compose service list (#3727)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft authored Nov 29, 2022
1 parent add1dd7 commit 87957e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class DockerComposeClient extends ConfigurableClient implements IContaine
withNamedArg('--timeout', options.timeoutSeconds?.toString(10)),
withFlagArg('--wait', options.wait),
withArg(options.customOptions),
withArg(options.services?.join(' ')),
withArg(...(options.services || [])),
)();
}

Expand Down

0 comments on commit 87957e9

Please sign in to comment.