mirror of https://github.com/docker/compose.git
fix: panic caused by empty string argument
Signed-off-by: Nick Sieger <nick@nicksieger.com>
This commit is contained in:
parent
dbf52d3f45
commit
fd5e8b8c28
|
@ -50,7 +50,7 @@ func Convert(args []string) []string {
|
|||
l := len(args)
|
||||
for i := 0; i < l; i++ {
|
||||
arg := args[i]
|
||||
if arg[0] != '-' {
|
||||
if len(arg) > 0 && arg[0] != '-' {
|
||||
// not a top-level flag anymore, keep the rest of the command unmodified
|
||||
if arg == compose.PluginName {
|
||||
i++
|
||||
|
|
|
@ -68,6 +68,11 @@ func Test_convert(t *testing.T) {
|
|||
args: []string{"--log-level", "INFO", "up"},
|
||||
want: []string{"--log-level", "INFO", "compose", "up"},
|
||||
},
|
||||
{
|
||||
name: "empty string argument",
|
||||
args: []string{"--project-directory", "", "ps"},
|
||||
want: []string{"compose", "--project-directory", "", "ps"},
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue