[ http://jira.codehaus.org/browse/MNG-2762?page=comments#action_84918 ] Jerome Lacoste commented on MNG-2762: -------------------------------------
The issue might be simiilar to http://pear.php.net/bugs/bug.php?id=5452 Does that mean that the fix is to change http://svn.codehaus.org/plexus/plexus-components/trunk/plexus-archiver/src/main/java/org/codehaus/plexus/archiver/tar/TarOutputStream.java public void finish() throws IOException { this.writeEOFRecord(); } into public void finish() throws IOException { this.writeEOFRecord(); this.writeEOFRecord(); } ?? Then as in the PHP Pear issue above, care must be taken if there are other parts of the archiver that expects a single empty block. > warning during tar unpackaging > ------------------------------ > > Key: MNG-2762 > URL: http://jira.codehaus.org/browse/MNG-2762 > Project: Maven 2 > Issue Type: Bug > Components: Bootstrap & Build > Reporter: Tomasz Pik > Priority: Minor > > Using tar distribution, during upackaging I'm getting: > tar: A lone zero block at 4174 > warning message in output. > Archive is being untarred correctly but this message may worry users that > archive is corrupted -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
