diff options
author | Lukáš Ondráček <lukas.ondracek@nic.cz> | 2024-07-30 17:35:06 +0200 |
---|---|---|
committer | Lukáš Ondráček <lukas.ondracek@nic.cz> | 2024-07-30 17:35:06 +0200 |
commit | 72554b505f5c1aa47b9a7b94e5cfef7af7bad2c4 (patch) | |
tree | e77e52c2b7086e65422c127a91632569e5fcee44 /ci | |
parent | Merge branch 'master' into rrl-wip (diff) | |
download | knot-resolver-72554b505f5c1aa47b9a7b94e5cfef7af7bad2c4.tar.xz knot-resolver-72554b505f5c1aa47b9a7b94e5cfef7af7bad2c4.zip |
fixup! defer: fix/hide tidy/trivial_checks warnings
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/no_assert_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/no_assert_check.sh b/ci/no_assert_check.sh index 4bb7ccfc..d86cc5b8 100755 --- a/ci/no_assert_check.sh +++ b/ci/no_assert_check.sh @@ -1,3 +1,3 @@ #!/bin/sh -grep '\<assert\>' -- $(git ls-files | grep '\.[hc]$' | grep -vE '^(contrib|bench|tests|daemon/ratelimiting.test|lib/kru)/') +grep '\<assert\>' -- $(git ls-files | grep '\.[hc]$' | grep -vE '^(contrib|bench|tests|daemon/ratelimiting.test)/|^lib/kru') test $? -eq 1 |