Skip to content

Commit

Permalink
ywar update: run checks in deterministic order
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Nov 25, 2022
1 parent 51904e5 commit 4bc4d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Ywar/App/Command/update.pm
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ sub execute {
my $class = "Ywar::Observer::$moniker";
my $obs = do { load_class($class); $class->new($config // {}); };

for my $check_name (keys %{$hunk->{checks}}) {
for my $check_name (sort keys %{$hunk->{checks}}) {
local $Logger = $Logger->proxy({
proxy_prefix => "$check_name | ",
});
Expand Down

0 comments on commit 4bc4d0a

Please sign in to comment.