use the latest script name

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@327228 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-21 18:04:23 +00:00
parent 5d9a7c3d2f
commit 402843facc
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ public class PerformReleaseMojo
Commandline cl = new Commandline();
cl.setExecutable( "m2" );
cl.setExecutable( "mvn" );
cl.setWorkingDirectory( workingDirectory );
@ -154,7 +154,7 @@ public class PerformReleaseMojo
if ( result != 0 )
{
throw new MojoExecutionException( "Result of m2 execution is: \'" + result + "\'. Release failed." );
throw new MojoExecutionException( "Result of mvn execution is: \'" + result + "\'. Release failed." );
}
}
catch ( CommandLineException e )