diff --git a/.github/scripts/cleancmd.pl b/.github/scripts/cleancmd.pl index e9366de740..355a845e4c 100755 --- a/.github/scripts/cleancmd.pl +++ b/.github/scripts/cleancmd.pl @@ -37,6 +37,9 @@ while() { } next if($ignore); + # strip out backticked words + $_ =~ s/`[^`]+`//g; + # strip out all long command line options $_ =~ s/--[a-z0-9-]+//g;