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
path: root/build
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-01-27 16:47:19 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2019-02-19 23:03:06 +0300
commit76b5f44f05f3ea9f56707ed0f6c4bff2fa7673e8 (patch)
tree8cf073b7ef13976ee9685a773fa4dbff04550ada /build
parent03d31926385624abe4b24b98dee93e132049889c (diff)
Strict Types, Return Types
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'build')
-rwxr-xr-xbuild/integration/run.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index 56f4ee7b07d..e13a77c27be 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -48,8 +48,9 @@ export TEST_SERVER_FED_URL="http://localhost:$PORT_FED/ocs/"
if [ "$INSTALLED" == "true" ]; then
#Enable external storage app
- $OCC app:enable files_external
- $OCC app:enable user_ldap
+ $OCC app:install --keep-disabled files_external
+ $OCC app:install --keep-disabled user_ldap
+ $OCC app:enable files_external user_ldap
mkdir -p work/local_storage
OUTPUT_CREATE_STORAGE=`$OCC files_external:create local_storage local null::null -c datadir=$PWD/work/local_storage`
@@ -71,8 +72,7 @@ if [ "$INSTALLED" == "true" ]; then
$OCC files_external:delete -y $ID_STORAGE
#Disable external storage app
- $OCC app:disable files_external
- $OCC app:disable user_ldap
+ $OCC app:disable files_external user_ldap
fi
if [ -z $HIDE_OC_LOGS ]; then