build: packages are all txz, skip trying harder and just use tar

This commit is contained in:
Franco Fichtner 2014-12-12 09:58:00 +01:00
parent ba5b62e044
commit fc66d2edc3
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ set -e
. ./common.sh
mkdir -p ${SETSDIR}
rm -f ${SETSDIR}/packages-*.txz
rm -f ${SETSDIR}/packages-*.tar
setup_stage ${STAGEDIR}
@ -49,6 +49,6 @@ cd ${STAGEDIR} && pkg repo .
echo -n ">>> Creating packages set... "
tar -Jcf ${SETSDIR}/packages-`date '+%Y%m%d'`.txz *
tar -cf ${SETSDIR}/packages-`date '+%Y%m%d'`.tar *
echo "done"