Don't grep doc/ if folder doesn't exist, should prevent some issues

This commit is contained in:
Alexandre Aubin 2021-10-24 14:32:15 +02:00
parent a3272065dd
commit 992f491e5e

View file

@ -455,6 +455,7 @@ class App(TestSuite):
@test()
def disclaimer_wording(app):
if os.path.exists(app.path + "/doc"):
if os.system(r"grep -nr -q 'Any known limitations, constrains or stuff not working, such as\|Other infos that people should be' %s/doc/" % app.path) == 0:
yield Info("In DISCLAIMER.md: 'Any known limitations [...] such as' and 'Other infos [...] such as' are supposed to be placeholder sentences meant to explain to packagers what is the expected content, but is not an appropriate wording for end users :/")