Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-02-23 11:27:52 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2016-02-23 11:31:31 +0300
commit5d1cabe0f6ddbb9232b68c15586a53dca33598f7 (patch)
treede6d4327c4b01cd00c6bbdc326104bcbe13cec92 /autotest-external.sh
parent83d5080e78fa481db3855da8fcd75f624f8cac1c (diff)
Add verbose flag to occ commands of autotest*
Diffstat (limited to 'autotest-external.sh')
-rwxr-xr-xautotest-external.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest-external.sh b/autotest-external.sh
index 0a3fafbd2a6..643153bb064 100755
--- a/autotest-external.sh
+++ b/autotest-external.sh
@@ -148,7 +148,7 @@ EOF
# trigger installation
echo "Installing ...."
- ./occ maintenance:install --database=$1 --database-name=$DATABASENAME --database-host=localhost --database-user=$DATABASEUSER --database-pass=owncloud --database-table-prefix=oc_ --admin-user=$ADMINLOGIN --admin-pass=admin --data-dir=$DATADIR
+ ./occ maintenance:install -vvv --database=$1 --database-name=$DATABASENAME --database-host=localhost --database-user=$DATABASEUSER --database-pass=owncloud --database-table-prefix=oc_ --admin-user=$ADMINLOGIN --admin-pass=admin --data-dir=$DATADIR
#test execution
echo "Testing with $1 ..."
@@ -161,7 +161,7 @@ EOF
rm -rf "coverage-external-html-$1"
mkdir "coverage-external-html-$1"
# just enable files_external
- php ../occ app:enable files_external
+ php ../occ app:enable -vvv files_external
if [[ "$_XDEBUG_CONFIG" ]]; then
export XDEBUG_CONFIG=$_XDEBUG_CONFIG
fi