occ app:check-code is noop

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-03-17 11:28:33 +01:00
parent ab5c19bb08
commit 68a402d889
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 0 additions and 33 deletions

View File

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