Fix arguments for tar

refs #6526
This commit is contained in:
Gunnar Beutner 2014-06-27 13:44:00 +02:00
parent 5309629403
commit 99b590ab95
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ if [ -n "$1" ]; then
exit 1
fi
if ! base64 -i -d $1 | tar ztf >/dev/null 2>&1; then
if ! base64 -i -d $1 | tar zt >/dev/null 2>&1; then
echo "The bundle file is invalid or corrupted."
exit 1
fi