Skip to content

Commit

Permalink
Fix flow command flags (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
feluelle committed Nov 16, 2022
1 parent 9d2377f commit e4d112e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func CommonDockerUtil(cmd, args []string, flags map[string]string, mountDirs []s

cmd = append(cmd, args...)
for key, value := range flags {
cmd = append(cmd, fmt.Sprintf("--%s %s", key, value))
cmd = append(cmd, fmt.Sprintf("--%s", key), value)
}

binds := []string{}
Expand Down

0 comments on commit e4d112e

Please sign in to comment.