From 19d0294739efe09f13090d1546c6f4f7d2279874 Mon Sep 17 00:00:00 2001 From: Christopher Sauer Date: Tue, 27 Jul 2021 14:58:51 -0700 Subject: [PATCH] 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 :) --- .../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 void execute() 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 ); }