curl-curl/scripts/badwords-all
Daniel Stenberg 3334fca537
badwords-all: exit with correct code on errors
Problems remain undetected in CI otherwise

Closes #20934
2026-03-16 11:01:48 +01:00

14 lines
322 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 '**.md' projects/OS400/README.OS400 src lib include docs/examples < scripts/badwords.txt") >> 8;