getsounds.sh: avoid copying sound files

This commit is contained in:
Travis Cross 2012-04-25 08:03:10 +00:00
parent 0e4fa9e23b
commit 7821e8ad9d

View File

@ -22,18 +22,18 @@ echo -n "#"
pwd pwd
echo "# $0 $1 $2" echo "# $0 $1 $2"
if [ ! -f $tarfile ] ; then if [ -n "$FS_SOUNDS_DIR" ] ; then
if [ -f $FS_SOUNDS_DIR/$tarfile ]; then [ -d $FS_SOUNDS_DIR ] || mkdir -p $FS_SOUNDS_DIR
cp -l $FS_SOUNDS_DIR/$tarfile . \ DIR=$FS_SOUNDS_DIR
|| cp $FS_SOUNDS_DIR/$tarfile . fi
else
$DOWNLOAD_CMD $base$tarfile if [ ! -f $DIR/$tarfile ] ; then
if [ ! -f $tarfile ] ; then (cd $DIR && $DOWNLOAD_CMD $base$tarfile)
if [ ! -f $DIR/$tarfile ] ; then
echo cannot find $tarfile echo cannot find $tarfile
exit 1 exit 1
fi fi
fi fi
fi
if [ ! -z $install ] ; then if [ ! -z $install ] ; then
test -d $install || mkdir $install test -d $install || mkdir $install