Skip to content
Snippets Groups Projects
Commit 548f4d8c authored by Recolic K's avatar Recolic K
Browse files

tiny bug fix

parent ebdf250d
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,7 @@ func decidePackageVersion(frameworkVersion, packageVersion string, indexJsons, i
// Some noob is writing `windowsazure.servicebus:6.0.0.0` (should be 6.0.0).
// Let's also tolerate this. Fuck!
thisPkgVersionIsPossibleOk = strings.HasPrefix(packageVersion, myVersionText)
thisPkgVersionIsPossibleOk = thisPkgVersionIsPossibleOk || strings.HasPrefix(packageVersion, myVersionText)
}
if thisPkgVersionIsOk {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment