Bug 1386402 - Change mar generation scripts to exit with an error if xz is not found on the system. r=bhearsum

This commit is contained in:
Robert Strong 2017-08-01 14:20:00 -07:00
Родитель 88ff15a541
Коммит c86980aa3c
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -14,6 +14,12 @@ MAR=${MAR:-mar}
MBSDIFF=${MBSDIFF:-mbsdiff}
if [[ -z "${MAR_OLD_FORMAT}" ]]; then
XZ=${XZ:-xz}
$XZ --version > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "xz was not found on this system!"
echo "exiting"
exit 1
fi
else
MAR_OLD_FORMAT=1
BZIP2=${BZIP2:-bzip2}