mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
The code runs under different rules than documentation and these checks cause too much friction with too little gain. Leave checking of the public include files since they are almost documentation. Closes #21048
15 lines
331 B
Perl
Executable File
15 lines
331 B
Perl
Executable File
#!/usr/bin/env perl
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Basename;
|
|
|
|
chdir dirname(__FILE__) . '/..';
|
|
|
|
exit system('scripts/badwords', ('scripts/badwords.txt',
|
|
'**.md', 'projects/OS400/README.OS400', 'include', 'docs/examples')) >> 8;
|