Skip to content

Commit

Permalink
Use --topo-order in update-changelog.p6
Browse files Browse the repository at this point in the history
jnthn++. So things part of the same merge show up next to each other.
  • Loading branch information
samcv committed Aug 29, 2018
1 parent b0b9062 commit 633604d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update-changelog.p6
Expand Up @@ -338,7 +338,7 @@ sub prompt-it (Str:D $pretext = '') {
}
}
sub MAIN (Bool:D :$print-modified-files = False, Bool:D :$print-commit = False) {
my @loggy = git-log "{last-tag()}..master", :get-changes;
my @loggy = git-log '--topo-order', "{last-tag()}..master", :get-changes;
my %categories;
if $dat-file.IO.f {
my $answer = 'y';
Expand Down

0 comments on commit 633604d

Please sign in to comment.