From: Daniel Stenberg Date: Mon, 16 Mar 2026 09:37:54 +0000 (+0100) Subject: badwords-all: exit with correct code on errors X-Git-Tag: rc-8_20_0-1~267 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3334fca537b019c4b0d2f3a2bbd43ac8a27ff89f;p=thirdparty%2Fcurl.git badwords-all: exit with correct code on errors Problems remain undetected in CI otherwise Closes #20934 --- diff --git a/scripts/badwords-all b/scripts/badwords-all index e426263d9a..27beba2596 100755 --- a/scripts/badwords-all +++ b/scripts/badwords-all @@ -10,4 +10,4 @@ use File::Basename; chdir dirname(__FILE__) . "/.."; -system("scripts/badwords '**.md' projects/OS400/README.OS400 src lib include docs/examples < scripts/badwords.txt"); +exit system("scripts/badwords '**.md' projects/OS400/README.OS400 src lib include docs/examples < scripts/badwords.txt") >> 8;