Bug 733530 Use tar instead of unzip in periodic updates r=catlee

Replace 'unzip -q' with 'tar -xvf' for tests .tar.gz

Differential Revision: https://phabricator.services.mozilla.com/D1939

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Fraser 2018-07-23 20:46:32 +00:00
Родитель 505c25cbf9
Коммит bfb9512d42
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -35,7 +35,7 @@ APP_NAME=''
HGHOST="hg.mozilla.org"
STAGEHOST="archive.mozilla.org"
WGET="wget -nv"
UNZIP="unzip -q"
UNTAR="tar -zxf"
DIFF="$(command -v diff) -u"
BASEDIR="${HOME}"
TOOLSDIR="${HOME}/tools"
@ -182,7 +182,7 @@ function unpack_artifacts {
${UNPACK_CMD} "${BROWSER_ARCHIVE}"
mkdir -p tests
cd tests
${UNZIP} "../${TESTS_ARCHIVE}"
${UNTAR} "../${TESTS_ARCHIVE}"
cd "${BASEDIR}"
cp tests/bin/xpcshell "${PRODUCT}"
}