Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Auto Closed
-
future
-
None
-
None
Description
In the Maven SCM Client code at
http://svn.apache.org/repos/asf/maven/scm/trunk/maven-scm-client/src/main/java/org/apache/maven/scm/client/cli/MavenScmCli.java
there is a check
if ( args.length != 3 )
which prevents entering parameters <scmVersion> <scmVersionType> (positions 4, 5)
Please update it to
if ( args.length < 3 )
to fix the issue. Thanks.