diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2021-09-13 23:44:24 +0430 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-09-14 21:33:15 +0430 |
commit | 7e75a16e6f9e5acbd170deae89ae2dadac86d14c (patch) | |
tree | 950579cbd02492b25f2ce1ab00fef642073b4a35 /Meta/check-ak-test-files.sh | |
parent | ccb53c64e9e0349581bc2a1f79ca1b351b4e682a (diff) | |
download | serenity-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.
Diffstat (limited to 'Meta/check-ak-test-files.sh')
-rwxr-xr-x | Meta/check-ak-test-files.sh | 2 |
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 < <( |