diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-16 16:18:02 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-16 16:18:02 -0500 |
commit | 6dea5e6aadc9611821d6f6c3949af56e9ca298f7 (patch) | |
tree | 3ed0b1c7cf1bf341b6caeb67fda537523c32355b /autotest-checkers.sh | |
parent | f920dfe09b15e101bc4bdf7052afe116c6872742 (diff) | |
download | nextcloud-server-6dea5e6aadc9611821d6f6c3949af56e9ca298f7.tar.gz nextcloud-server-6dea5e6aadc9611821d6f6c3949af56e9ca298f7.zip |
Implement skip checkers and log the currently tested app
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'autotest-checkers.sh')
-rwxr-xr-x | autotest-checkers.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh index d6a45373879..35c945a17e9 100755 --- a/autotest-checkers.sh +++ b/autotest-checkers.sh @@ -12,7 +12,8 @@ php ./build/htaccess-checker.php RESULT=$(($RESULT+$?)) -for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -printf '%f\n'); do +for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;); do + echo "Testing $app" if [ "$app" == "dav" ] || \ [ "$app" == "encryption" ] || \ |