Skip to content

Commit

Permalink
Allow hyphen for proc name (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
satococoa authored and ddollar committed Apr 13, 2016
1 parent ea0c5b4 commit 62551d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion procfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"regexp"
)

var procfileEntryRegexp = regexp.MustCompile("^([A-Za-z0-9_]+):\\s*(.+)$")
var procfileEntryRegexp = regexp.MustCompile("^([A-Za-z0-9_-]+):\\s*(.+)$")

type ProcfileEntry struct {
Name string
Expand Down

0 comments on commit 62551d4

Please sign in to comment.