getsounds.sh: style tweaks
This commit is contained in:
parent
9a2b82dace
commit
59d08bd033
|
@ -8,7 +8,7 @@ CURL=@CURL@
|
||||||
|
|
||||||
DIR=`pwd`
|
DIR=`pwd`
|
||||||
|
|
||||||
if [ -x "$WGET" ] ; then
|
if [ -x "$WGET" ]; then
|
||||||
DOWNLOAD_CMD=$WGET
|
DOWNLOAD_CMD=$WGET
|
||||||
fi
|
fi
|
||||||
if [ "x${DOWNLOAD_CMD}" = "x" -a -x "$CURL" ] ; then
|
if [ "x${DOWNLOAD_CMD}" = "x" -a -x "$CURL" ] ; then
|
||||||
|
@ -23,22 +23,22 @@ echo -n "#"
|
||||||
pwd
|
pwd
|
||||||
echo "# $0 $1 $2"
|
echo "# $0 $1 $2"
|
||||||
|
|
||||||
if [ -n "$FS_SOUNDS_DIR" ] ; then
|
if [ -n "$FS_SOUNDS_DIR" ]; then
|
||||||
[ -d $FS_SOUNDS_DIR ] || mkdir -p $FS_SOUNDS_DIR
|
[ -d $FS_SOUNDS_DIR ] || mkdir -p $FS_SOUNDS_DIR
|
||||||
DIR=$FS_SOUNDS_DIR
|
DIR=$FS_SOUNDS_DIR
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $DIR/$tarfile ] ; then
|
if [ ! -f $DIR/$tarfile ]; then
|
||||||
(cd $DIR && $DOWNLOAD_CMD $base$tarfile)
|
(cd $DIR && $DOWNLOAD_CMD $base$tarfile)
|
||||||
if [ ! -f $DIR/$tarfile ] ; then
|
if [ ! -f $DIR/$tarfile ]; then
|
||||||
echo cannot find $tarfile
|
echo "cannot find $tarfile"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z $install ] ; then
|
if [ ! -z "$install" ]; then
|
||||||
test -d $install || mkdir $install
|
test -d $install || mkdir $install
|
||||||
cd $install && $ZCAT -c -d $DIR/$tarfile | $TAR xf -
|
(cd $install && $ZCAT -c -d $DIR/$tarfile | $TAR xf -)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue