From 337892c63591efacdc9c8e801e21cea625b92512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Sun, 13 Apr 2014 20:44:24 +0200 Subject: [PATCH] travis: forgot to use sudo when installing packages --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 270eb6348..954b2864c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: - "3.3" # command to install dependencies install: - - "apt-get install -y libacl1-dev" + - "sudo apt-get install -y libacl1-dev" - "pip install --use-mirrors Cython" - "pip install -e ." # command to run tests