Browse Source
Move check for missing since tag to autotest-checkers.sh
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/21839/head
Daniel Kesselberg
5 years ago
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
2 changed files with
2 additions and
3 deletions
-
autotest-checkers.sh
-
autotest.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 |
|
|
|
|
|
|
|
@ -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 |
|
|
|
|