Skip to content

Commit

Permalink
Move check for missing since tag to autotest-checkers.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
  • Loading branch information
kesselb committed Jul 14, 2020
1 parent 8f78205 commit fc8566b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions autotest-checkers.sh
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions autotest.sh
Expand Up @@ -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
Expand Down

0 comments on commit fc8566b

Please sign in to comment.