From 0f6aab95933d088bf978b1cdfa476246b050712b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= Date: Fri, 23 Nov 2012 00:57:24 +0100 Subject: [PATCH] giving up on apt, just download the right firefox deb --- script/ci/before_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/ci/before_install.sh b/script/ci/before_install.sh index cca836d4e..a947708c4 100755 --- a/script/ci/before_install.sh +++ b/script/ci/before_install.sh @@ -6,5 +6,6 @@ envdir="$(readlink -e $(dirname $0))/../env" . "$envdir/ensure_right_rubygems" if [ "$BUILD_TYPE" = "cucumber" ]; then - sudo aptitude --without-recommends --assume-yes install firefox=16.0.2+build1-0ubuntu0 + curl http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_16.0.2+build1-0ubuntu0.12.04.1_i386.deb > firefox.deb + sudo dpkg -i firefox.deb fi