Skip to content
Snippets Groups Projects
Verified Commit 8991dcad authored by Renato Alves's avatar Renato Alves :seedling:
Browse files

Silence include links output in POSIX shell

parent 7fd8f106
No related branches found
No related tags found
No related merge requests found
Pipeline #24341 failed
......@@ -20,7 +20,7 @@ for filename in iglob('*/*/*.md'):
no_tag = []
for filename in section_markdown_files:
cmd = r"tail -5 " + filename + r" | egrep '{% include links.md %}' &> /dev/null"
cmd = r"tail -5 " + filename + r" | egrep '{% include links.md %}' > /dev/null"
try:
exit_code = subprocess.check_call(cmd, shell=True)
except subprocess.CalledProcessError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment