diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-07-10 21:21:50 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-07-10 21:21:50 (EDT) |
commit | ff81df62cf8716fc41d46df9ecf43b8ad450fbb1 (patch) | |
tree | 7df1cf1cffec1248480a9ce7aa4b29d4f1f68b73 | |
parent | 95b92b32e331c017f5f791596da2b7d1781b9bd7 (diff) |
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.
-rwxr-xr-x | bin/depsdot | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |