mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Meta: Also run markdown-check on markdown files in each Port subdir
This commit is contained in:
parent
7ad212ff63
commit
f43f83512e
Notes:
sideshowbarker
2024-07-17 17:06:59 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/f43f83512e Pull-request: https://github.com/SerenityOS/serenity/pull/18935
2 changed files with 4 additions and 4 deletions
|
@ -23,4 +23,4 @@ if [ -z "$SERENITY_SOURCE_DIR" ] ; then
|
|||
export SERENITY_SOURCE_DIR
|
||||
fi
|
||||
|
||||
find AK Base Documentation Kernel Meta Ports Tests Userland -path 'Ports/*/*' -prune -o -type f -name '*.md' -print0 | xargs -0 "${MARKDOWN_CHECK_BINARY}" README.md CONTRIBUTING.md
|
||||
find AK Base Documentation Kernel Meta Ports Tests Userland -type f -name '*.md' -print0 | xargs -0 "${MARKDOWN_CHECK_BINARY}" README.md CONTRIBUTING.md
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
/*
|
||||
* You may want to invoke the checker like this:
|
||||
* $ cd Build/lagom
|
||||
* $ ninja
|
||||
* $ find ../../AK ../../Base ../../Documentation/ ../../Kernel/ ../../Meta/ ../../Ports/ ../../Tests/ ../../Userland/ -type f -name '*.md' | xargs ./markdown-check ../../README.md
|
||||
* $ ninja -C Build/lagom
|
||||
* $ export SERENITY_SOURCE_DIR=/path/to/serenity
|
||||
* $ find AK Base Documentation Kernel Meta Ports Tests Userland -type f -name '*.md' -print0 | xargs -0 Build/lagom/markdown-check README.md CONTRIBUTING.md
|
||||
*/
|
||||
|
||||
#include <AK/Format.h>
|
||||
|
|
Loading…
Reference in a new issue