Plugin: Remove error on invalid version (#71951)

* Remove error on invalid version

* Skip test case
This commit is contained in:
Hugo Kiyodi Oshiro
2023-07-19 16:55:31 +02:00
committed by GitHub
parent bfff496ca6
commit bc3d22ec48
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ func validateInput(c utils.CommandLine) error {
version := args.Get(1)
_, err := semver.NewVersion(version)
if err != nil {
return fmt.Errorf("the provided version (%s) is invalid", version)
logger.Info(color.YellowString("The provided version doesn't use semantic versioning format\n\n"))
}
}