diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-15 07:32:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 07:32:34 +0200 |
commit | 91df865dc9ce50d8113ace9bb304896395e72f41 (patch) | |
tree | facf3debef4400bc34b33ed351ff31d497ed7fe6 | |
parent | 26d018c515fe1615d5bf9aac378a8aae2a33bc74 (diff) | |
parent | fc8566b253f2522541f6334bca0b2d0402a4ebc5 (diff) | |
download | nextcloud-server-91df865dc9ce50d8113ace9bb304896395e72f41.tar.gz nextcloud-server-91df865dc9ce50d8113ace9bb304896395e72f41.zip |
Merge pull request #21839 from nextcloud/debt/noid/move-since-check-to-checkers
Move since check to checkers
-rwxr-xr-x | autotest-checkers.sh | 2 | ||||
-rwxr-xr-x | autotest.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh index 105cf95c534..cfa70a764b0 100755 --- a/autotest-checkers.sh +++ b/autotest-checkers.sh @@ -12,6 +12,8 @@ php ./build/htaccess-checker.php RESULT=$(($RESULT+$?)) bash ./build/ca-bundle-checker.sh RESULT=$(($RESULT+$?)) +php ./build/OCPSinceChecker.php +RESULT=$(($RESULT+$?)) dataDirCreated=0 if ! [ -e data/ ]; then diff --git a/autotest.sh b/autotest.sh index a43e05f9334..7214df18b14 100755 --- a/autotest.sh +++ b/autotest.sh @@ -109,9 +109,6 @@ else PRIMARY_STORAGE_CONFIG="local" fi -# check for the presence of @since in all OCP methods -$PHP build/OCPSinceChecker.php - # Back up existing (dev) config if one exists and backup not already there if [ -f config/config.php ] && [ ! -f config/config-autotest-backup.php ]; then mv config/config.php config/config-autotest-backup.php |