summaryrefslogtreecommitdiffstats
path: root/autotest.sh
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2015-12-01 12:03:27 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2015-12-01 12:03:27 +0100
commitb4302a49be9e0ea67f53fe566c9335fa23ed9a9f (patch)
treef9397add38b40453d55d807761321d94c2dc8d4d /autotest.sh
parent36660734a62b0f388b4d1dcc70f1bfaae620bf28 (diff)
downloadnextcloud-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-xautotest.sh2
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