o Fixing bug that appeared with a newer version of tail.

Thanks to Kristian Nordal for the solution.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162853 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Trygve Laugstol 2004-07-05 13:19:16 +00:00
parent 85107479c0
commit c3862d2a26
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ mkdir $DIR
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