*** empty log message ***

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-08-15 16:49:32 +00:00
parent 8991c26f9c
commit cad4fb9326
1 changed files with 12 additions and 2 deletions

View File

@ -190,10 +190,20 @@ public static String replace( String text, String repl, String with, int max )
// ----------------------------------------------------------------------
public static void main( String args[] )
throws VerificationException
{
Verifier verifier = new Verifier( args[0] );
try
{
verifier.verify();
}
catch ( VerificationException e )
{
System.out.println( e.getMessage() );
System.exit( 1 );
}
System.exit( 0 );
}
}