Skip to content

Commit df2c2ab

Browse files
committed
Remove MkDocs 2 warning
This is from Material for MkDocs, warning that it will not support MkDocs 2. Material for MkDocs has pinned to `mkdocs<2` so we don't need to do anything further here.
1 parent d1e00c5 commit df2c2ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ fix: devenv
125125

126126
# Run the dev project
127127
run: devenv
128-
$BIN/mkdocs serve -a localhost:8910
128+
NO_MKDOCS_2_WARNING=1 $BIN/mkdocs serve -a localhost:8910
129129

130130
# Build the documentation
131131
build: devenv
132-
$BIN/mkdocs build --strict
132+
NO_MKDOCS_2_WARNING=1 $BIN/mkdocs build --strict
133133

134134
# Count words in generated documentation content (within <article> tags)
135135
wordcount: build

0 commit comments

Comments
 (0)