Move the echo to the right place in case the bindist has already extracted.

This commit is contained in:
Jordan K. Hubbard 1994-11-10 02:47:06 +00:00
parent ffc232881f
commit 830d93f8fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4333

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id$
# $Id: extract.sh,v 1.5 1994/11/10 02:24:47 phk Exp $
DDIR=/
@ -18,8 +18,8 @@ fi
for i in *.aa
do
b=`basename $i .aa`
echo "Extracting $b"
if [ "$b" != bin_tgz ] ; then
echo "Extracting $b"
cat $b.?? | zcat | ( cd $DDIR ; tar xf - )
fi
done