Bug 36176: Exclude misc/releases_notes/*

(cherry picked from commit 93a68d2068)
Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
This commit is contained in:
Lucas Gass 2024-03-26 20:32:15 +00:00 committed by Frédéric Demians
parent eec863243e
commit 452f4d5acf

View file

@ -19,7 +19,7 @@ use Modern::Perl;
use Test::More tests => 1;
use Data::Dumper;
my @files = `git grep 'cud-' ':(exclude)xt/find-cud.t'`;
my @files = `git grep 'cud-' ':(exclude)xt/find-cud.t' ':(exclude)misc/release_notes/*'`;
chomp for @files;
is( @files, 0, "This branch is not supposed to have 'cud-', see bug 34478." )