From d7b1c00b9db42639b60d9b99d76584190a6c74ef Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 12 Mar 2019 09:54:02 +0100 Subject: [PATCH] find-firmware: check for 5.0 versioned directory Signed-off-by: Thomas Lamprecht --- debian/scripts/find-firmware.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/find-firmware.pl b/debian/scripts/find-firmware.pl index b031037..b999638 100755 --- a/debian/scripts/find-firmware.pl +++ b/debian/scripts/find-firmware.pl @@ -8,7 +8,7 @@ die "no directory to scan" if !$dir; die "no such directory" if ! -d $dir; -die "strange directory name" if $dir !~ m|^(.*/)?(4.15.\d+\-\d+\-pve)(/+)?$|; +die "strange directory name" if $dir !~ m|^(.*/)?(5.0.\d+\-\d+\-pve)(/+)?$|; my $apiver = $2;