1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools/check-md: skip CHANGELOG

This commit is contained in:
Alexander Medvednikov
2020-12-22 21:01:54 +01:00
parent e4f94b6ad5
commit 25cbbc1e44
2 changed files with 10 additions and 8 deletions

View File

@@ -70,6 +70,9 @@ fn md_file_paths() []string {
if file.starts_with('./thirdparty') {
continue
}
if file.contains('CHANGELOG') {
continue
}
files_to_check << file
}
return files_to_check