Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

[REF] install: Skip webkit installation if there is a issue #449

Merged
merged 2 commits into from
Jun 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions travis/travis_install_nightly
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ if [ "$clone_result" != "0" ]; then
exit $clone_result
fi;

echo "Install webkit (wkhtmltopdf) patched"
(cd ${HOME}/maintainer-quality-tools/travis/ && wget -qO- https://downloads.wkhtmltopdf.org/0.12/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz | tar -xJ --strip-components=2 wkhtmltox/bin/wkhtmltopdf)
if [ "${WKHTMLTOPDF_VERSION}" != "" ]; then
echo "Install webkit (wkhtmltopdf) patched version ${WKHTMLTOPDF_VERSION}"
(cd ${HOME}/maintainer-quality-tools/travis/ && wget -qO- -t 1 --timeout=240 https://downloads.wkhtmltopdf.org/0.12/${WKHTMLTOPDF_VERSION}/wkhtmltox-${WKHTMLTOPDF_VERSION}_linux-generic-amd64.tar.xz | tar -xJ --strip-components=2 wkhtmltox/bin/wkhtmltopdf)
fi;

# Expected directory structure:
#
Expand Down