From 48e47c6a46aebb9103edf92179e8180cb12cc5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Wed, 12 Jul 2023 09:25:39 +0200 Subject: [PATCH] fix: also run phpunit on `apps/theming/css` modified files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- tests/drone-run-php-tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/drone-run-php-tests.sh b/tests/drone-run-php-tests.sh index ff4737b77a0..aad781a1c7b 100755 --- a/tests/drone-run-php-tests.sh +++ b/tests/drone-run-php-tests.sh @@ -24,4 +24,6 @@ echo "=========================" [[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "3rdparty") -gt 0 ]] && echo "3rdparty is modified" && exit 0 +[[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "apps/theming/css") -gt 0 ]] && echo "theming css is modified" && exit 0 + exit 1