diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-01 12:03:27 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-01 12:03:27 +0100 |
commit | b4302a49be9e0ea67f53fe566c9335fa23ed9a9f (patch) | |
tree | f9397add38b40453d55d807761321d94c2dc8d4d /autotest.sh | |
parent | 36660734a62b0f388b4d1dcc70f1bfaae620bf28 (diff) | |
download | nextcloud-server-b4302a49be9e0ea67f53fe566c9335fa23ed9a9f.tar.gz nextcloud-server-b4302a49be9e0ea67f53fe566c9335fa23ed9a9f.zip |
Make autotest.sh able to output proper coverage again
The usage of single quotes make sure that a string is used verbatim in
bash. And no variables are subsituted.
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotest.sh b/autotest.sh index eb57264c953..5196d5c31d5 100755 --- a/autotest.sh +++ b/autotest.sh @@ -270,7 +270,7 @@ function execute_tests { COVER='' if [ -z "$NOCOVERAGE" ]; then - COVER='--coverage-clover "autotest-clover-$DB.xml" --coverage-html "coverage-html-$DB"' + COVER="--coverage-clover autotest-clover-$DB.xml --coverage-html coverage-html-$DB" else echo "No coverage" fi |