Removed the obsolete build_tgz.sh script

This commit is contained in:
Tobias Blomberg 2014-06-30 18:54:17 +02:00
parent e0d573a088
commit 4e155838c3
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#!/bin/sh
SVNROOT=https://svxlink.svn.sourceforge.net/svnroot/svxlink
#DATE=$(date +%y%m%d)
if [ $# -gt 0 ]; then
DATE=$1
else
DATE=$(date +%y%m%d)
fi
NAME=svxlink-${DATE}
ARCH=/tmp/${NAME}.tar.gz
rm -rf /tmp/${NAME}
cd /tmp
svn export ${SVNROOT}/trunk/src ${NAME}
tar cvzf ${ARCH} ${NAME}
ret=$?
rm -rf /tmp/${NAME}
[ $ret -eq 0 ] && echo -e "\n--- Wrote $ARCH"