This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-install-plugin.git
The following commit(s) were added to refs/heads/master by this push: new 19d0294 Minor improvement to English grammar in error msg 19d0294 is described below commit 19d0294739efe09f13090d1546c6f4f7d2279874 Author: Christopher Sauer <cpsa...@users.noreply.github.com> AuthorDate: Tue Jul 27 14:58:51 2021 -0700 Minor improvement to English grammar in error msg Fixed some unusual phrasing I saw while running maven commands. Goal is to leave things even better than I found them :) --- src/main/java/org/apache/maven/plugins/install/InstallFileMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/plugins/install/InstallFileMojo.java b/src/main/java/org/apache/maven/plugins/install/InstallFileMojo.java index 66a55cd..32865b2 100644 --- a/src/main/java/org/apache/maven/plugins/install/InstallFileMojo.java +++ b/src/main/java/org/apache/maven/plugins/install/InstallFileMojo.java @@ -185,7 +185,7 @@ public class InstallFileMojo if ( !file.exists() ) { - String message = "The specified file '" + file.getPath() + "' not exists"; + String message = "The specified file '" + file.getPath() + "' does not exist"; getLog().error( message ); throw new MojoFailureException( message ); }