Skip to content

Commit

Permalink
diff: print the src/dst directories
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsura authored and BareosBot committed Aug 1, 2023
1 parent dea6ad0 commit b0ccce3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions systemtests/scripts/diff.pl.in
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ foreach my $f (keys %src_attr)
{
if (!defined $dst_attr{$f}) {
$ret++;
print "diff.pl ERROR: Can't find $f in dst\n";
print "diff.pl ERROR: Can't find $f in (dst) $dst\n";

} else {
compare($src_attr{$f}, $dst_attr{$f});
Expand All @@ -97,7 +97,7 @@ foreach my $f (keys %src_attr)
foreach my $f (keys %dst_attr)
{
$ret++;
print "diff.pl ERROR: Can't find $f in src\n";
print "diff.pl ERROR: Can't find $f in (src) $src\n";
}

if ($ret) {
Expand Down

0 comments on commit b0ccce3

Please sign in to comment.