diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-01-27 14:47:19 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-02-19 21:03:06 +0100 |
commit | 76b5f44f05f3ea9f56707ed0f6c4bff2fa7673e8 (patch) | |
tree | 8cf073b7ef13976ee9685a773fa4dbff04550ada /build | |
parent | 03d31926385624abe4b24b98dee93e132049889c (diff) | |
download | nextcloud-server-76b5f44f05f3ea9f56707ed0f6c4bff2fa7673e8.tar.gz nextcloud-server-76b5f44f05f3ea9f56707ed0f6c4bff2fa7673e8.zip |
Strict Types, Return Types
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'build')
-rwxr-xr-x | build/integration/run.sh | 8 |
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 |