You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/01/11 11:10:28 UTC

[maven-jar-plugin] branch master updated: Fix incorrect verification message

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-jar-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new dce703f  Fix incorrect verification message
dce703f is described below

commit dce703f3eccd1116d1f6f532b1764f5552eab0eb
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Tue Jan 11 12:10:17 2022 +0100

    Fix incorrect verification message
---
 src/it/manifest-content/verify.bsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/it/manifest-content/verify.bsh b/src/it/manifest-content/verify.bsh
index 6c1cf72..ccf3f5a 100644
--- a/src/it/manifest-content/verify.bsh
+++ b/src/it/manifest-content/verify.bsh
@@ -52,7 +52,7 @@ try
     }
     if ( !"META-INF/MANIFEST.MF".equals( resultingEntries.nextElement().getName() ) )
     {
-        System.err.println( "META-INF/MANIFEST.MF must be first zip entry" );
+        System.err.println( "META-INF/MANIFEST.MF must be second zip entry" );
         return false;
     }
     zip.close();