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

This commit is contained in:
jkh 1994-11-10 02:47:06 +00:00
parent 451c8fe79f
commit 21180d6017

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