summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-09-13 23:44:24 +0430
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-09-14 21:33:15 +0430
commit7e75a16e6f9e5acbd170deae89ae2dadac86d14c (patch)
tree950579cbd02492b25f2ce1ab00fef642073b4a35
parentccb53c64e9e0349581bc2a1f79ca1b351b4e682a (diff)
downloadserenity-7e75a16e6f9e5acbd170deae89ae2dadac86d14c.zip
Meta: Tweak the error in check-ak-test-files.sh a bit
This can also be tripped when the change was simply not being committed, avoid confusing the author by simply mentioning that.
-rwxr-xr-xMeta/check-ak-test-files.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh
index 0ac82bd958..a716b0d904 100755
--- a/Meta/check-ak-test-files.sh
+++ b/Meta/check-ak-test-files.sh
@@ -10,7 +10,7 @@ MISSING_FILES=n
while IFS= read -r FILENAME; do
# Simply search whether the CMakeLists.txt *ever* mention the test files.
if ! grep -qP "${FILENAME}" Tests/AK/CMakeLists.txt ; then
- echo "Tests/AK/CMakeLists.txt is missing the test file ${FILENAME}"
+ echo "Tests/AK/CMakeLists.txt is either missing the test file ${FILENAME} or is not in the commit's staged changes"
MISSING_FILES=y
fi
done < <(