Skip to content

Commit 941b849

Browse files
authored
Merge pull request #2058 from FabianKramm/master
refactor: use space as delimiter for get_flag
2 parents c758d69 + 16fd7f8 commit 941b849

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • pkg/devspace/pipeline/engine/basichandler/commands

pkg/devspace/pipeline/engine/basichandler/commands/get_flag.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func GetFlag(ctx context.Context, args []string) error {
2828
if !found && f.Name == args[0] {
2929
sliceType, ok := f.Value.(flag.SliceValue)
3030
if ok {
31-
value = strings.Join(sliceType.GetSlice(), ",")
31+
value = strings.Join(sliceType.GetSlice(), " ")
3232
} else {
3333
value = f.Value.String()
3434
}

0 commit comments

Comments
 (0)