From f6600c90e4cad2a62799a6780c902f908fc848f1 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Sat, 30 May 2015 16:07:12 -0600 Subject: [PATCH] Correct missing 'sudo' for travis setup --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e701d493..ab4e905f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ before_install: - sudo pip install cpp-coveralls - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - - apt-get install -qq g++-$GCC_VER + - sudo apt-get install -qq g++-$GCC_VER script: - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug . ; fi