Merge pull request #52 from dbrower/master

Prefer transition names which match exactly
This commit is contained in:
coryb
2016-08-24 12:26:56 -07:00
committed by GitHub
+3
View File
@@ -666,6 +666,9 @@ func (c *Cli) CmdTransition(issue string, trans string) error {
transName = name
transID = id
transMeta = transition.(map[string]interface{})
if strings.ToLower(name) == strings.ToLower(trans) {
break
}
}
}
if transID == "" {