Fix the .bundle validation.

Refs #6002
This commit is contained in:
Gunnar Beutner 2014-04-13 19:24:22 +02:00
parent c9b0a3f2ba
commit ea04f25e92
1 changed files with 1 additions and 1 deletions

View File

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