diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-12-17 00:42:13 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-17 00:42:13 +0100 |
commit | 135686539f7d0e8c51555e37a334b9556fd55a19 (patch) | |
tree | 1c1a301abf0a920c4c509bd989fd30481d5d7b4c /script | |
parent | 90535df46d0d8b4052497a9dc0beacd8c186066f (diff) | |
download | App-ArchLinux-PackagerTools-135686539f7d0e8c51555e37a334b9556fd55a19.tar.gz App-ArchLinux-PackagerTools-135686539f7d0e8c51555e37a334b9556fd55a19.tar.xz |
Initialize context in top level package
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'script')
-rwxr-xr-x | script/perlpkg.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/script/perlpkg.pl b/script/perlpkg.pl index f66b9d6..e6cac27 100755 --- a/script/perlpkg.pl +++ b/script/perlpkg.pl @@ -48,8 +48,7 @@ if ($ARGV[0] // "" eq "--debug") { } Log::Any::Adapter->set('Log4perl'); -my $context = {}; -my $app = App::ArchLinux::PackagerTools->new({context => $context}); +my $app = App::ArchLinux::PackagerTools->new(); use Data::Dumper; my $dists = $app->get_distributions_in_repo(); |