Skip to content

Commit

Permalink
Merge pull request #35 from ibuildthecloud/fix-labels
Browse files Browse the repository at this point in the history
Fix labels in run
  • Loading branch information
ibuildthecloud authored Dec 16, 2016
2 parents 9cd9771 + ae92547 commit 8623bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func serviceRun(ctx *cli.Context) error {
}

for _, label := range ctx.StringSlice("label") {
parts := strings.SplitN(label, "=", 1)
parts := strings.SplitN(label, "=", 2)
value := ""
if len(parts) > 1 {
value = parts[1]
Expand Down

0 comments on commit 8623bb4

Please sign in to comment.