diff options
author | lloyd <[email protected]> | 2015-05-12 02:08:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-05-12 02:08:37 +0000 |
commit | 8965d79d362434f638369edc8fa62e77f2c40143 (patch) | |
tree | 030b6de73f6c24f6a5229797eb34fb8410ac46cf /.travis.yml | |
parent | c06b6c1212cb16b2586fb6614dba984d1293db28 (diff) |
The BUILD_MODE env var was not being passed through sudo by default
which broke coverage testing. Instead run the setup script as the
regular user and use sudo for specific commands, which seems cleaner
anyway.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f8e0e06df..2b533eb23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_install: - sudo apt-get update -qq install: - - sudo ./src/scripts/ci/setup.sh + - ./src/scripts/ci/setup.sh script: - ./src/scripts/ci/build.sh |