From ff81df62cf8716fc41d46df9ecf43b8ad450fbb1 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 10 Jul 2020 21:21:50 -0400 Subject: Skip empty feeds Fixes: Use of uninitialized value $package in hash element at ./bin/depsdot line 52. Use of uninitialized value $source in hash element at ./bin/depsdot line 52. --- diff --git a/bin/depsdot b/bin/depsdot index 696cb6f..beaa41b 100755 --- a/bin/depsdot +++ b/bin/depsdot @@ -46,6 +46,7 @@ sub read_list push(@deps, split(m{\s*,\s*}, $value)); } } + next if not defined($source); if ($is_src) { push(@src_pkgs, $source); } else { -- cgit v0.9.1