From 6343c5a57a3e0b4d7a8eb0b33a0281c93fc5c474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=ADle=20Ekaterin=20Aman?= <sheila@vulpine.house> Date: Wed, 1 Jun 2022 18:44:59 -0700 Subject: [PATCH] Chessa::Bug: that is not how you assign arrays to arrays, genius... --- scripts/Chessa/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Chessa/Bug.pm b/scripts/Chessa/Bug.pm index 9e2b782..fb5e541 100644 --- a/scripts/Chessa/Bug.pm +++ b/scripts/Chessa/Bug.pm @@ -44,7 +44,7 @@ sub new { $self->{finder} = $finder; $self->{plugins} = []; - my @plugins = @{ $finder->modules }; + my @plugins = $finder->modules; for my $plugin (@plugins) { load_module($self, $plugin, $args{"${plugin}_conf"}); -- GitLab