diff options
author | Gary Kim <gary@garykim.dev> | 2020-04-05 19:29:08 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-04-07 12:06:40 +0800 |
commit | 283b8a5e74b7aa536480c39d22176acd1ad0efba (patch) | |
tree | facddc1a5474c8fbd0dfff96e996a7546e7289db /autotest-checkers.sh | |
parent | cac1480bf885ab6d4be22eeb5cf0cf7caa69d51d (diff) | |
download | nextcloud-server-283b8a5e74b7aa536480c39d22176acd1ad0efba.tar.gz nextcloud-server-283b8a5e74b7aa536480c39d22176acd1ad0efba.zip |
Check for triple dots in translations in CI
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'autotest-checkers.sh')
-rwxr-xr-x | autotest-checkers.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh index bb1ad2534fb..105cf95c534 100755 --- a/autotest-checkers.sh +++ b/autotest-checkers.sh @@ -6,6 +6,8 @@ bash ./build/autoloaderchecker.sh RESULT=$(($RESULT+$?)) php ./build/translation-checker.php RESULT=$(($RESULT+$?)) +php ./build/triple-dot-checker.php +RESULT=$(($RESULT+$?)) php ./build/htaccess-checker.php RESULT=$(($RESULT+$?)) bash ./build/ca-bundle-checker.sh |