Reverse list of checkins when printing them out so that the output can *properly* be used to back out the checkins. Bug #22346

This commit is contained in:
cls%seawood.org 2001-03-09 04:38:19 +00:00
Родитель e2f087b0e3
Коммит f062b9c2ec
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -234,7 +234,7 @@ if (defined $::FORM{'generateBackoutCVSCommands'}) {
# backout the changes selected by your query.
";
foreach my $ci (@{$result}) {
foreach my $ci (reverse @{$result}) {
if ($ci->[$::CI_REV] eq "") {
print "echo 'Changes made to $ci->[$::CI_DIR]/$ci->[$::CI_FILE] need to be backed out by hand'\n";
next;