You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by tr...@apache.org on 2004/07/05 15:19:17 UTC

cvs commit: maven-components/maven-mboot/src/sea sea-header

trygvis     2004/07/05 06:19:16

  Modified:    maven-mboot/src/sea sea-header
  Log:
  o Fixing bug that appeared with a newer version of tail.
    Thanks to Kristian Nordal for the solution.
  
  Revision  Changes    Path
  1.6       +1 -1      maven-components/maven-mboot/src/sea/sea-header
  
  Index: sea-header
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-mboot/src/sea/sea-header,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- sea-header	10 Apr 2004 04:52:16 -0000	1.5
  +++ sea-header	5 Jul 2004 13:19:16 -0000	1.6
  @@ -30,7 +30,7 @@
   SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`
   
   # Take the TGZ portion of this file and pipe it to tar.
  -tail +$SKIP $0 | tar xz -C $DIR
  +tail -n +$SKIP $0 | tar xz -C $DIR
   
   . ${MBOOT_HOME}/maven.functions