blob: 07b98289a09080b4aeecf35b6de2e492a778fd63 (
plain) (
tree)
|
|
#! /bin/sh
#
# $FreeBSD$
#
# unwrap - extract the combined package (created with wrap)
# move the file to a new name with an extension
rm -rf $1.cvswrap
mv $1 $1.cvswrap
# untar the file
if `gzip -t $1.cvswrap > /dev/null 2>&1`
then
zcat -d $1.cvswrap | tar --preserve --sparse -x -f -
else
tar --preserve -x -f $1.cvswrap
fi
# remove the original
rm -rf $1.cvswrap
|