mirror of https://github.com/apache/maven.git
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:
parent
85107479c0
commit
c3862d2a26
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue