mirror of
https://github.com/Hopiu/micro.git
synced 2026-03-19 23:40:31 +00:00
Merge pull request #1233 from teresy/simplify-index
simplify cases of strings.Index with strings.Contains
This commit is contained in:
commit
49b6cf3673
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ func expandWildcardVersion(parts [][]string) ([][]string, error) {
|
|||
for _, p := range parts {
|
||||
var newParts []string
|
||||
for _, ap := range p {
|
||||
if strings.Index(ap, "x") != -1 {
|
||||
if strings.Contains(ap, "x") {
|
||||
opStr, vStr, err := splitComparatorVersion(ap)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
|
|||
Loading…
Reference in a new issue