Skip to content

Commit 8623bb4

Browse files
Merge pull request #35 from ibuildthecloud/fix-labels
Fix labels in run
2 parents 9cd9771 + ae92547 commit 8623bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ func serviceRun(ctx *cli.Context) error {
277277
}
278278

279279
for _, label := range ctx.StringSlice("label") {
280-
parts := strings.SplitN(label, "=", 1)
280+
parts := strings.SplitN(label, "=", 2)
281281
value := ""
282282
if len(parts) > 1 {
283283
value = parts[1]

0 commit comments

Comments
 (0)