aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcheck_sign_by_path.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_sign_by_path.pl b/check_sign_by_path.pl
index ca2c131..c3c1944 100755
--- a/check_sign_by_path.pl
+++ b/check_sign_by_path.pl
@@ -43,7 +43,7 @@ foreach my $pkg (@list_pkg) {
#my @command = `LC_ALL=C rpm --rcfile=$rpmrc --checksig -v $pkg | grep "key ID"`;
my @command = `LC_ALL=C rpm --checksig -v $pkg | grep "key ID"`;
foreach (@command) {
- if ($_ =~ /$key/) {
+ if ($_ =~ /$key/i) {
# dont print if it is OK
# print "$pkg signature OK\n";
last;