diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-15 09:45:03 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-15 09:45:03 +0100 |
commit | 2232b100b7aaf34085d18f4f37afabd75f123f60 (patch) | |
tree | 5e6f50a9f4665bb09ce324b9f8d63e6c231c13bf /.travis.yml | |
parent | 68f2c84967166ae1bac96551a2c7fe210910d657 (diff) | |
download | sbotools-2232b100b7aaf34085d18f4f37afabd75f123f60.tar.xz |
Change prove incantation so it works via sudo
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 0d68054..9a1a34b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,4 +9,4 @@ sudo: required install: - sudo bash t/travis-deps/install.sh - cpanm Text::Diff Capture::Tiny Test::Output -script: sudo prove t/*.t +script: bash -c 'PROVE=`which prove`; sudo $PROVE t/*.t' |