Browse Source

occ app:check-code is noop

Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling 3 years ago
parent
commit
68a402d889
1 changed files with 0 additions and 33 deletions
  1. 0 33
      autotest-checkers.sh

+ 0 - 33
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+$?))