Skip to content

Commit

Permalink
[SCM-967] MavenScmCli requires at least three args not less
Browse files Browse the repository at this point in the history
This #127
  • Loading branch information
michael-o committed Sep 12, 2021
1 parent 9b27fdd commit e5b41e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public static void main( String[] args )

String command;

if ( args.length != 3 )
if ( args.length < 3 )
{
System.err.println(
"Usage: maven-scm-client <command> <working directory> <scm url> [<scmVersion> [<scmVersionType>]]" );
Expand Down

0 comments on commit e5b41e5

Please sign in to comment.