diff options
author | mattack108 <matt.lenc@gmail.com> | 2013-09-20 11:45:25 +0100 |
---|---|---|
committer | mattack108 <matt.lenc@gmail.com> | 2013-09-20 11:45:25 +0100 |
commit | 1ee1b632cbfc08b5142e4a636c22d1787cdb0ce1 (patch) | |
tree | d883a6141982b792d78f07aabd7d5355906547b3 | |
parent | 45eab831e2ad1f3f73560527ed5f618bfb62177f (diff) | |
download | django-wkhtmltopdf-1ee1b632cbfc08b5142e4a636c22d1787cdb0ce1.tar.gz django-wkhtmltopdf-1ee1b632cbfc08b5142e4a636c22d1787cdb0ce1.tar.bz2 django-wkhtmltopdf-1ee1b632cbfc08b5142e4a636c22d1787cdb0ce1.zip |
Fix command for installing wkhtmltopdf because Travis upgraded to latest OS where aptitude is not available
-rwxr-xr-x | before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/before_script.sh b/before_script.sh index ca9ae03..debae09 100755 --- a/before_script.sh +++ b/before_script.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -sudo aptitude install -y openssl build-essential xorg libssl-dev +sudo apt-get install -y openssl build-essential xorg libssl-dev wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.11.0_rc1-static-i386.tar.bz2 tar xvjf wkhtmltopdf-0.11.0_rc1-static-i386.tar.bz2 sudo chown root:root wkhtmltopdf-i386 |