aboutsummaryrefslogtreecommitdiffstats
path: root/isocheck.pl
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-02-17 19:14:29 +0000
committerRomain d'Alverny <rda@mageia.org>2012-02-17 19:14:29 +0000
commit1e56d4d23b16c9ab51315b9e492f8ee0c57cad90 (patch)
tree65a94c9d74246c70f7ed344523a92fb2fc47a6f5 /isocheck.pl
parentbc8ff11acccb5cd555dc2372fafc4f9d594c3b25 (diff)
downloadisocheck-1e56d4d23b16c9ab51315b9e492f8ee0c57cad90.tar
isocheck-1e56d4d23b16c9ab51315b9e492f8ee0c57cad90.tar.gz
isocheck-1e56d4d23b16c9ab51315b9e492f8ee0c57cad90.tar.bz2
isocheck-1e56d4d23b16c9ab51315b9e492f8ee0c57cad90.tar.xz
isocheck-1e56d4d23b16c9ab51315b9e492f8ee0c57cad90.zip
reorganize bits
- typos - check idx/lst only for LiveCDs - check .{md5,sha1}.gpg only with final releases - update isoinfo expected headers
Diffstat (limited to 'isocheck.pl')
-rw-r--r--isocheck.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/isocheck.pl b/isocheck.pl
index 446b5ad..df94cb9 100644
--- a/isocheck.pl
+++ b/isocheck.pl
@@ -59,7 +59,7 @@ my $name = basename($image_path);
my %info = Isocheck::parse_image_file_name($name);
my @testfiles;
-if ($info{variant} =~ /^LiveCD/) {
+if (defined $info{variant} && $info{variant} =~ /^LiveCD/) {
@testfiles = glob('image_tests/live_iso/*.t');
} else {
@testfiles = glob('image_tests/install_iso/*.t');