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 <coding@schilljs.com>2021-03-17 13:28:33 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-17 13:29:53 +0300
commit68a402d889536450a852c38ee39bad7b83fa19cf (patch)
treecdc42f2796e80b25c47229b070e401cfa65a8afb /autotest-checkers.sh
parentab5c19bb081ca073f3b9a2441a74cb83c807d797 (diff)
occ app:check-code is noop
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'autotest-checkers.sh')
-rwxr-xr-xautotest-checkers.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh
index cfa70a764b0..a539b598ded 100755
--- a/autotest-checkers.sh
+++ b/autotest-checkers.sh
@@ -15,39 +15,6 @@ RESULT=$(($RESULT+$?))
php ./build/OCPSinceChecker.php
RESULT=$(($RESULT+$?))
-dataDirCreated=0
-if ! [ -e data/ ]; then
- dataDirCreated=1
- echo "Create directory 'data/'"
- mkdir data/
-fi
-for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;); do
- echo "Testing $app"
- if
- [ "$app" == "dav" ] || \
- [ "$app" == "encryption" ] || \
- [ "$app" == "federatedfilesharing" ] || \
- [ "$app" == "files" ] || \
- [ "$app" == "files_external" ] || \
- [ "$app" == "files_sharing" ] || \
- [ "$app" == "files_trashbin" ] || \
- [ "$app" == "files_versions" ] || \
- [ "$app" == "provisioning_api" ] || \
- [ "$app" == "settings" ] || \
- [ "$app" == "updatenotification" ] || \
- [ "$app" == "user_ldap" ]
- then
- ./occ app:check-code --skip-checkers "$app"
- else
- ./occ app:check-code "$app"
- fi
- RESULT=$(($RESULT+$?))
-done;
-if [ $dataDirCreated == 1 ]; then
- echo "Delete created directory 'data/'"
- rm -rf data/
-fi
-
php ./build/files-checker.php
RESULT=$(($RESULT+$?))